安装第三方库 Faker时使用pip install faker命令时出现Could not fetch URL https://pypi.org/simple/pip/: There was ...

安装第三方库 Faker时使用pip install faker命令时出现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, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)) - skipping


经过查看大佬的帖子

https://www.cnblogs.com/jiyanjiao-702521/p/9960071.html(帖子仅供学习记录,如有侵权联系删除)

大佬的原话:发现是url的来源的问题,换成了国内的pip源就可以正常安装了,我使用的是:pip install xlrd -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

我换成自己的安装命令:

pip install faker -i http://pypi.douban.com/simple --trusted-host pypi.douban.com(使用豆瓣镜像源)

切换镜像源之后,安装成功


以下是其他的镜像源:

1)http://mirrors.aliyun.com/pypi/simple/阿里云

2)https://pypi.mirrors.ustc.edu.cn/simple/ 中国科技大学

3)http://pypi.douban.com/simple/豆瓣

4)https://pypi.tuna.tsinghua.edu.cn/simple/清华大学

5)http://pypi.mirrors.ustc.edu.cn/simple/中国科学技术大学

你可能感兴趣的:(安装第三方库 Faker时使用pip install faker命令时出现Could not fetch URL https://pypi.org/simple/pip/: There was ...)