这里写自定义目录标题
pip install opencv 失败
ERROR: Could not find a version that satisfies the requirement opencv (from versions: none)
ERROR: No matching distribution found for opencv
您收到这些错误是因为opencv和cv2不是 python 包名称。
这些都包含在opencv-python可从 pip 安装的包中。
如果您使用的是 python 2,则可以使用 pip 安装:
pip3 install opencv-python
参考:https://stackoverflow.com/questions/37776228/pycharm-python-opencv-and-cv2-install-error