Home > Article > Backend Development > How to install opencv with conda
Conda installation opencv method: 1. You can use the "conda install -c conda-forge opencv" command to install the latest version of OpenCV in the Conda environment.
The operating system for this tutorial: Windows 10 system, Python version 3.11.4, Dell G3 computer.
You can install OpenCV in your Conda environment using the following command:
conda install -c conda-forge opencv
This will install the latest version of OpenCV in your Conda environment. The -c conda-forge part specifies the use of the Conda Forge channel to obtain the OpenCV package.
After the installation is complete, you can use OpenCV in your Conda environment.
The above is the detailed content of How to install opencv with conda. For more information, please follow other related articles on the PHP Chinese website!