Could not find a version that satisfies the requirement cv2或No matching distribution found for cv2

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

安装cv2时遇到错误
在PyCharm中没有安上cv2,于是去命令行安装,输入如下命令:

pip install cv2

遇到错误:
在这里插入图片描述错误的第一行意思是:
错误:找不到满足要求 cv2 的版本(来自版本:无)
错误第二行意思是:
错误:未找到 cv2 的匹配分布

解决
换种命令即可:
win + R ----> cmd 回车,进入本机 Win11 终端窗口。
输入以下命令:

pip install opencv-python

没有使用镜像的方式,会慢一些,但好在安装包不大。等待几分钟即可:
Could not find a version that satisfies the requirement cv2或No matching distribution found for cv2_第1张图片

可以在 PyCharm 中看到啦:
Could not find a version that satisfies the requirement cv2或No matching distribution found for cv2_第2张图片

可以成功导入模块不在爆红:
在这里插入图片描述

你可能感兴趣的:(python,opencv,开发语言)