ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)问题原因及解决方法

ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)问题原因及解决方法

  • 问题描述
  • 问题原因
  • 解决方法
  • 小技巧

问题描述

ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)问题原因及解决方法_第1张图片
出现没安装该库提示,于是使用命令下载

pip install cv2

但是报错
在这里插入图片描述

问题原因

应该是库的名字变了,我用Pycharm的工具Pypi查看,发现搜索cv最顶上的那个是opencv-python,于是我又安装了这个库,报错就消失了
ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)问题原因及解决方法_第2张图片

解决方法

使用这条命令

pip install opencv-python

或者在PyPI里面直接点击安装
ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)问题原因及解决方法_第3张图片
问题就解决啦!
ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)问题原因及解决方法_第4张图片

小技巧

通过手机热点连接网络,别,别用校园网

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