pip安装模块报错"in _error_catcher....."的解决办法

今天安装cv2时,报了错,其中第一条:…_vendor\urllib3\response.py", line 425, in _error_catcher…
我们直接用命令:pip install 库名,因网络太慢,导致下载超时~~~
总结了一下解决方法:
其一:
pip --default-timeout=100 install -U 库名
例如:
pip --default-timeout=100 install -U cv2

其二:

包源镜像:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 库名
例如:

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

在实际操作中,我采用命令:

python -m pip --default-timeout=100 install -U cv2

你可能感兴趣的:(pip安装模块报错"in _error_catcher....."的解决办法)