使用python的pip下载不了东西Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming t

目录

  • 前言
    • 问题
    • 问题解决

前言

问题

问题是这样的,本来是想下载个pip install xxx的 ,结果报错了,他说什么证书不能用,要更新pip,
结果更新不了,检查了下应该是网络动荡,也就是我的电脑连接不上。

使用python的pip下载不了东西Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming t_第1张图片
使用python的pip下载不了东西Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming t_第2张图片

问题解决

其实加个数据源就行了,-i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

比如我要下载个包,pip install xxx

pip install xxx -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

比如我要更新,python -m pip install --upgrade pip

python -m pip install --upgrade pip -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

在你要下载,也就是要联网的地方加上 -i 数据源就行

其他数据源

  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/ 中国科学技术大学

你可能感兴趣的:(问题解决方案,问题)