(pytorch) D:\Python\PythonCharm\STUDY_CNN>conda install opencv-python Collecting package metadata (current_repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve. Collecting package metadata (repodata.json
时间: 2023-10-07 09:12:14 浏览: 183
opencv-python-4.10.0.84.tar.gz
5星 · 资源好评率100%
It seems like your conda environment is having trouble installing the `opencv-python` package. One possible solution is to try updating conda and then retry the installation using the following commands:
```
conda update conda
conda install -c conda-forge opencv
```
Alternatively, you can also try creating a new conda environment and installing `opencv-python` there. To create a new environment, run:
```
conda create -n myenv python=3.8
```
This will create a new environment named `myenv` with Python 3.8 installed. You can activate the environment using:
```
conda activate myenv
```
Then, try installing `opencv-python` again using `conda install -c conda-forge opencv`.
阅读全文