如何将 pypi 设置为受信任?
How do I set up pypi to trusted?
我正在尝试使用 Python 轮子。当我执行 pip install wheel
时,它说存在要求,但是我收到此 SSL 错误:
(base) C:\Users\xxxx\PycharmProjects\prepay_clone>pip install wheel
Requirement already satisfied: wheel in c:\programdata\anaconda3\lib\site-packages (0.33.1)
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1056)'))) - skipping
起初我忽略了它,因为轮子似乎已安装。但是,当我稍后 运行 setup.py sdist bdist_wheel
时,它绝对不会输出任何东西。
提前致谢!
为了回答您的问题,--trusted-host
标志告诉 pip 不要为指定的主机使用 SSL。我在公司网络上一直遇到这个问题。我发现这在 99% 的时间里都有效:
pip --trusted-host pypi.org --trusted-host files.pythonhosted.org install wheel
我不确定这是否是你的问题,pip 似乎告诉你 wheel 已经安装了。
我正在尝试使用 Python 轮子。当我执行 pip install wheel
时,它说存在要求,但是我收到此 SSL 错误:
(base) C:\Users\xxxx\PycharmProjects\prepay_clone>pip install wheel
Requirement already satisfied: wheel in c:\programdata\anaconda3\lib\site-packages (0.33.1)
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1056)'))) - skipping
起初我忽略了它,因为轮子似乎已安装。但是,当我稍后 运行 setup.py sdist bdist_wheel
时,它绝对不会输出任何东西。
提前致谢!
为了回答您的问题,--trusted-host
标志告诉 pip 不要为指定的主机使用 SSL。我在公司网络上一直遇到这个问题。我发现这在 99% 的时间里都有效:
pip --trusted-host pypi.org --trusted-host files.pythonhosted.org install wheel
我不确定这是否是你的问题,pip 似乎告诉你 wheel 已经安装了。