ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none) ERROR: No matching distribution found for cv2
时间: 2023-10-11 21:13:23 浏览: 162
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
`cv2` is not a package that can be installed using pip. It is a package that comes with OpenCV, which is a popular computer vision library.
To install OpenCV, you can use the following command:
```
pip install opencv-python
```
This should install OpenCV and its associated packages, including `cv2`.
阅读全文