Collecting cv2 Could not find a version that satisfies the requirement cv2 (from versions: ) No matching distribution found for cv2 初学Python,在安装cv2框架的时候,报以上错误,试了很多次 pip install cv2 依然无效,后来查阅了好多资料,总结下面的方法,安装了opencv后,里面包含了cv2框架. If you are using pyth…
使用pip3 安装cv2包的时候报错 PS C:\Users\lenovo> pip3 install cv2 Collecting cv2 Could not find a version that satisfies the requirement cv2 (from versions: ) No matching distribution found for cv2 解决方案: pip3 install opencv-python…
电脑上同时有python2 和python3,python2 里有cv2,Python3里没有. 用pip3 install opencv-python 安装,提示: You are using pip version 9.0.1, however version 10.0.1 is available.You should consider upgrading via the 'pip install --upgrade pip' command. 所以先升级pip3,但是提示这个命令没用,使…
前言 我在使用pip install opencv-python 时报错 Could not find a version that satisfies the requirement opencv (from versions: ) No matching distribution found for opencv 树莓派的镜像是默认装的镜像,没怎么装过其他东西的.我查看了python的版本,python是2.7版本的,树莓派镜像默认是装好了python2.分析原因,python2版本过久,无…
pip install cv2 安装报错是一个常见现象: ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none) ERROR: No matching distribution found for cv2 解决方案一: 将CV2更改为opencv-python pip install opencv-python 刚方法解决不了则需使用国内的镜像源来加速,克服有时候网络不稳定时…
问题:在windows命令窗口输入pip install cv2后出现:Could not find a version that satisfies the requirement cv2... 解决办法:换成以下命令: pip3 install opencv-python 答案地址:https://stackoverflow.com/questions/37776228/pycharm-python-opencv-and-cv2-install-error…