pip install requests 报错 Could not fetch URL https://pypi.python.org/simple/requests/: There was ..r

来源:互联网 发布:淘宝抢优惠券软件 编辑:程序博客网 时间:2024/03/28 18:11

如题:

pip install requests 报错 :

Could not fetch URL https://pypi.python.org/simple/requests/: There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:600) -skipping Could not find a version that satisfies the requirement requests (from versions: )

No matching distribution found for requests

解决:添加 --trusted-host pypi.python.org ,=> pip  --trusted-host pypi.python.org install  requests 

其他类似问题同样解决。


阅读全文
0 0