Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirmingthe ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError(SSLError(1, u'[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:661)'),)) - skipping
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
解决办法:
1、新建一个pip.ini文件
[global] index-url=http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com
2、将pip.ini文件添加到环境变量中。
本文解决了在使用pip安装包时遇到的SSL证书验证失败的问题,通过更换为阿里云的pip源并设置信任主机,避免了因SSL证书问题导致的安装失败。
8029

被折叠的 条评论
为什么被折叠?



