解决Python 使用pip安装库时出现的超时错误

 

尝试在python3.7上直接使用pip install opencv安装opencv,结果出错,没有找到对应版本。网上说采用pip install opencv-python可以安装,没想到出现如下错误
在这里插入图片描述


在这里插入图片描述
原因:可以看出是由于连接超时,因此我们可以通过换源的方法来解决
国内主要的源如下:
阿里云 http://mirrors.aliyun.com/pypi/simple/

中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

豆瓣(douban) http://pypi.douban.com/simple/

清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/

中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
我使用了中科大的源下载:
pip install opencv-python -i https://pypi.mirrors.ustc.edu.cn/simple
(要换哪个源只需要改-i后面的链接地址即可)
在这里插入图片描述
至此就安装成功了,可以通过 import cv2来引用了

posted @ 2021-01-15 11:50  Jc_code  阅读(211)  评论(0编辑  收藏  举报