pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

前端之家收集整理的这篇文章主要介绍了pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在ubuntu系统 中使用python安装模块时遇到错误

pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

原因分析:

在下载python库的时候,由于国内网络原因,python包的下载速度非常慢,查看pip 文档,只要在 pip的时候控制超时即可,具体参数为 --default-timeout=100, 后面的时间可以自己指定。

临时解决方法

pip install --default-timeout=1000 --no-cache-dir -r requirements.txt

最好解决方法

  1.  切换pyton源为国内镜像源 http://www.chenxm.cc/article/955.html

pip install -r requirements.txt -i http://mirrors.aliyun.com/pypi/simple/


猜你在找的Python相关文章