pycharm 安装opencv-contrib-python www.example.com时发生错误3.3.0.9

rnmwe5a2  于 2022-11-08  发布在  PyCharm
关注(0)|答案(1)|浏览(151)

我正在尝试使用命令python -m pip install opencv-contrib-python==3.3.0.9安装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、opencv4.1.2.30和PyCharm。

9udxz4iz

9udxz4iz1#

是否可以使用以下命令安装较新版本的opencv-contrib-python
pip install opencv-contrib-python
根据https://pypi.org/project/opencv-contrib-python/3.3.0.9/,该版本不支持Python 3.7,它还提供了指向latest version的链接,其中提到了支持Python 3.7和安装指南(即pip install opencv-contrib-python

相关问题