我是靠谱客的博主 忧郁蜻蜓,最近开发中收集的这篇文章主要介绍Python安装cv2库出错及解决:Could not find a version that satisfies the requirement cv2,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

  原来的安装命令是:

Python安装OpenCV_柳鲲鹏-CSDN博客

  今天怎么不灵了?初步判断是原来使用3.5,现在改用了2.7(项目需要)。

  • 解决办法一(网友提供)
 pip3 install opencv-python
  • 解决办法二

  尝试运行命令:

pip install cv2
Collecting cv2
  Could not find a version that satisfies the requirement cv2 (from versions: )
No matching distribution found for cv2

  看到这个错误,赶紧搜索,找到的办法都无法解决。于是怀疑查找的更新库有问题……可是为什么改了也不对?

  后来同事过来一看,直接搜索cv2,原来安装办法是:

sudo apt-get install python-opencv

# 同理,还有其他的:python-scipy/python-numpy/python-matplotlib/python-requests/python-skimage

  然后进python, import cv2,成功。

  查看版本号:

python -V
pip -V

filterpy可以直接用pip安装。

sudo pip2 install opencv-python

sudo pip2 install --upgrade pip

sudo pip  install --upgrade pip

最后

以上就是忧郁蜻蜓为你收集整理的Python安装cv2库出错及解决:Could not find a version that satisfies the requirement cv2的全部内容,希望文章能够帮你解决Python安装cv2库出错及解决:Could not find a version that satisfies the requirement cv2所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部