0

我正在尝试opencv-contrib-python 3.3.0.9使用命令安装python -m pip install opencv-contrib-python==3.3.0.9

但是它抛出以下错误:

Could not find a version that satisfies the requirement opencv-contrib-python==3.3.0.9 (from versions: 3.4.2.16, 3.4.2.17, 3.4.3.18, 3.4.4.19, 3.4.5.20, 3.4.6.27, 3.4.7.28, 3.4.8.29, 4.0.0.21, 4.0.1.23, 4.0.1.24, 4.
1.0.25, 4.1.1.26, 4.1.2.30)
No matching distribution found for opencv-contrib-python==3.3.0.9

我正在使用 Python 3.7、opencv 4.1.2.30 和 PyCharm。

4

1 回答 1

1

您可以使用 安装更新版本的opencv-contrib-python
pip install opencv-contrib-python

根据https://pypi.org/project/opencv-contrib-python/3.3.0.9/,该版本不支持 Python 3.7,它还提供了指向最新版本的链接,其中提到了支持 Python 3.7 和安装指南(即pip install opencv-contrib-python)

于 2020-02-01T19:21:12.093 回答