opencv-python的安装报错及处理

在我们需要import cv2的时候,我们应该先安装opencv-python

一、安装

进入cmd打开命令行,输入pip install opencv-python,此时可能成功也可能报错()

二、报错

当安装的时候,报错是一堆红字

opencv-python的安装报错及处理_第1张图片

我们看最后一行time out,表明下载太慢,那我们就使用国内的镜像资源

三、解决

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

opencv-python的安装报错及处理_第2张图片

四、如何检验安装成功

进入python,输入import cv2,不报错即成功

五、

在查看别人的文章时,还有另外一种方法:pip install opencv-contrib-python

原文链接:https://blog.csdn.net/qq_41627235/article/details/87692748

区别:

在pypi中解释到:

run pip install opencv-python( if you need only main modules)
run pip install opencv-contrib-python if you need both main and contrib modules (check extra modules listing from OpenCV documentation)

其他国内镜像源

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

阿里云:http://mirrors.aliyun.com/pypi/simple/

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

华中理工大学:http://pypi.hustunique.com/

山东理工大学:http://pypi.sdutlinux.org/ 

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

你可能感兴趣的:(pycharm安装包,opencv,python,人工智能)