Closed tby1995 closed 6 years ago
Try reinstalling the module. To install pip you need to follow this https://pypi.python.org/pypi/setuptools once you get easy_install I installed pip first and then run the following command.
sudo easy_install pip sudo python setup.py install
遇到同样问题,pip更新到最新了,最后怎么解决呢?
pip降到10以下
最方便的就是主动降级pip python.exe -m pip install -U pip==9.0.3
遇到同样的问题 pip降到10以下的话 安装其他的库又会要求升级怎么破
降级pip到9.0.3安装成功后,再升级回10.0.1
现在pip官方把req移到_internal里面了,表示不对外开放了,简直日了狗。
fixed in 3.0.10
你好:
利用pip 10.0.1 安装时出现以下问题
网上说此原因可能与 pip 10 更新有关, 可否将 setup.py", line 20
from pip.req import parse_requirements
改为 try: # for pip >= 10 from pip._internal.req import parse_requirements except ImportError: # for pip <= 9.0.3 from pip.req import parse_requirements