ERROR: Could not find a version that satisfies the requirement opencv-contrib-python==3.4.2.16 (from versions: 3.4.11.45, 3.4.13.47, 3.4.14.51, 3.4.15.55, 3.4.16.59, 3.4.17.61, 3.4.17.63, 3.4.18.65, 4.4.0.46, 4.5.1.48, 4.5.2.52, 4.5.3.56, 4.5.4.58, 4.5.4.60, 4.5.5.62, 4.5.5.64, 4.6.0.66, 4.7.0.68, 4.7.0.72) ERROR: No matching distribution found for opencv-contrib-python==3.4.2.16
时间: 2024-03-24 20:40:17 浏览: 219
Could not find a version that satisfies the requirement PIL (from versions: ) No matching distribu
这个错误提示说明 pip 没有找到 opencv-contrib-python 3.4.2.16 的版本。这可能是因为该版本已经被删除或者不再被支持。您可以尝试使用其他版本的 opencv-contrib-python,例如 3.4.13.47 或 3.4.18.65。您可以使用以下命令进行安装:
```python
pip install opencv-contrib-python==3.4.13.47
```
或者
```python
pip install opencv-contrib-python==3.4.18.65
```
如果您仍然遇到问题,建议您在 Stack Overflow 或者其他技术论坛上寻求帮助。
阅读全文