安装
pip install opencv-contrib-python
报错信息
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
解决方法(加参数)
pip install --default-timeout=100 opencv-contrib-python
本文介绍了一种常见的pip安装OpenCV-contrib-python时遇到的超时错误及其解决方案。当使用pip安装时,可能会遇到读取超时的错误,文章提供了一个通过增加超时参数来解决此问题的方法。
安装
pip install opencv-contrib-python
报错信息
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
解决方法(加参数)
pip install --default-timeout=100 opencv-contrib-python

被折叠的 条评论
为什么被折叠?