方法一:进入cmd命令行,直接输入pip install opencv-python 然后回车就可以了
方法二:使用其他下载路径(使用镜像)
指令如下:
1、
pip install opencv-contrib-python
2、清华镜像
pip install opencv-python -i 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/
还是报错,再尝试指令:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn opencv-python
遇到权限问题再加user:渗饥
pip install --user -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn opencv-python
基于pip安装,有两种选项:
1.安装到系统的site-packages
2.安装到虚拟环境的site-packages
可以通过pip在系统进行安橘渗装,或在anaconda 或virtualenv的圆饥脊虚拟环境来肢顷安装。
有四个opencv的版本在pip可以获得:
1、opencv-python包含opencv的主要modules
2、opencv-contrib-python 包含opencv的主要modules以及contrib modules
3、opencv-python-headless: 和opencv-python相同,但是没有GUI功能
4、opencv-contrib-python-headless:与opencv-contrib-python相同,但是没有GUI功能。
推荐在虚拟环境(anaconda 或virtualenv)中安装第二种:
sudo apt-get install -y libsm6 libxext6 libxrender-dev
pip install opencv-contrib-python
python
>>>import cv2
参考资料:
https://blog.csdn.net/u011119817/article/details/100110495
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)