Closed g3rd closed 6 years ago
In setup.py it is using from pip.req import parse_requirements
from pip.req import parse_requirements
However, in Pip 10.0 that method has moved.
I added
try: from pip._internal.req import parse_requirements except: from pip.req import parse_requirements
to get it to work.
Thanks. I updated.
In setup.py it is using
from pip.req import parse_requirements
However, in Pip 10.0 that method has moved.
I added
to get it to work.