Pycharm terminal does not recognize -r command

Viewed 7

I'm trying to run the command :

pip install -r common\requirements.txt

In the pycharm terminal. However, I get the following error:

ERROR: Invalid requirement :'-r'

When I execute the command above without "-r", pycharm tells me to add it to the command.

Can you please help me identify the issue?

1 Answers

As user defiant wrote, the solution was to replace the "-" character with a manually written one, because when you do copy+paste on this command, it registers the "-" as a different character

Related