ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org‘, port=443): Read timed out.

问题背景:

在conda环境下安装opencv-python的库
输入命令:

pip install opencv-python

问题描述

下载package的速度很慢,10k左右每秒,于是则出现了该错误。

ERROR: Exception:
Traceback (most recent call last):
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

原因分析:

最有可能的原因就是本机网速过慢,导致Readtimedout.


解决方案:

1、更换较快的网络下载(将WiFi换成热点)
2、使用下载镜像网站(如豆瓣、清华)

pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple

使用方法2,下载成功
ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org‘, port=443): Read timed out._第1张图片

你可能感兴趣的:(python,opencv,pip)