pip install第三方包 Could not fetch URL https://pypi.tuna.tsinghua.edu.cn/simple/pipenv/:【解决方案】
pip instal xxx 的时候总是报如下错误
Could not fetch URL https://pypi.tuna.tsinghua.edu.cn/simple/pipenv/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.tuna.tsinghua.edu.cn', port=443): Max retries exceeded with url: /simple/pipenv/
默认pip是使用Python官方的源,但是由于国外官方源经常被墙,导致不可用,我们可以使用国内的python镜像源,从而解决
Python安装不上库的烦恼。
上网也找了很多方法,最后记录下对我这种错误肯定管用的解决方案,亲测有效~
关键命令如下:
C:\Users\Administrator>pip install xxx -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
做一下解释:
1. pip install 表示通过pip 来安装某种包
2. xxx 表示你要安装的包名,比如pipenv,jupyter等等
3. -i http://pypi.douban.com/simple 表示将镜像地址切换为国内,这里切换到了豆瓣
常用的镜像地址有:
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/ 中国科学技术大学
4.--trusted-host pypi.douban.com 表示将指定网站设置为信任服务器
最后附上一张成功截图:

祝大家安装成功!!!
AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。
更多推荐



所有评论(0)