Could not find a version that satisfies the requirement opencv-python==3.4.1.15
时间: 2023-08-28 16:20:31 浏览: 131
opencv3.4.1.15_python安装包
I apologize for the confusion in my previous response. It seems that the version `3.4.1.15` of `opencv-python` is not available through the standard package repositories.
If you specifically require this version, you may need to consider alternative methods to install it. One option is to search for the specific version on the official OpenCV website or other reliable sources and download the package manually. Then, you can install it using the local file path.
Here is an example of how you can install a specific version of `opencv-python` from a local file:
```python
pip install /path/to/opencv_python-3.4.1.15.whl
```
Make sure to replace `/path/to/opencv_python-3.4.1.15.whl` with the actual file path of the downloaded package.
Please note that while this method allows you to install a specific version, it's important to ensure that the chosen version is compatible with your Python environment and other dependencies.
阅读全文