OpenCV library is widely used in processing images and videos. In this tutorial, we will introduce how to install opencv with anaconda on windows 10 for opencv beginners.
There are two ways to install opencv.
Activate anaconda environment
As to me, we have installed py3 anaconda environment with python 3.5 by anaconda. We should activate it firstly.
activate py3
Then we can install opencv library by two ways.
Method 1: use pip command
pip install opencv-python
Then you will install opencv on windows 10.
Method 2: use conda command to install
conda install -c conda-forge opencv
Then you will see tips like:
Then opencv also be installed on your windows 10.