I am trying to install some packages from a .txt file. When I try to install them, pip
is reading the file but is saying that '=' is an invalid operator
. I have also tried changing the '='
to '=='
with no success.
For example, I am trying to install aniso8601=8.0.0=py_0
, but keep getting the error:
ERROR: Invalid requirement: 'aniso8601=8.0.0=py_0' (from line 4 of requirements.txt)
Hint: = is not a valid operator. Did you mean == ?
Edit: I was getting the list of dependencies from someone else and the py_0 portion was an oversight by me as it was something added that they left on the end of their list.