我在使用pip下载库时遇到问题(之前从未遇到此问题,仅在一两周前开始)..
curl https://bootstrap.pypa.io/get-pip.py >> get-pip.py
python get-pip.py
我也尝试过以下解决方案
pip install --trusted-host pypi.python.org <package_name>
但不幸的是,这不起作用。我得到的错误如下:
Collecting pycoin
Could not fetch URL https://pypi.python.org/simple/pycoin/: There was a problem confirming the ssl certificate: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:645) - skipping
Could not find a version that satisfies the requirement pycoin (from versions: )
No matching distribution found for pycoin
感谢您的时间!
答案 0 :(得分:2)
我有一个类似的问题,因为我可以在this SO answer之后升级我的macOS系统Python(版本2.7)的pip,但它不适用于任何版本的Python 3.这里&#39;是对我有用的其他SO答案的改编版本:
curl https://bootstrap.pypa.io/get-pip.py >> get-pip.py
python get-pip.py
(您可能需要使用sudo
运行它。)python3 get-pip.py
(这假设您将Python 3符号链接为&#34; python3&#34;。如果您不想要提供完整路径到您的Python 3版本。)然后你应该好好去! (查看pip --version
,pip3 --version
和/或pip2 --version
。)