0

I downloaded and install Anaconda 3 on my computer windows and now I'd like to add OpenCV.

What's the easiest way to do it ?

J.A
  • 285
  • 3
  • 12
  • 1
    conda install -c menpo opencv ref : https://stackoverflow.com/questions/23119413/how-do-i-install-python-opencv-through-conda – Anup Yadav Dec 31 '18 at 11:01

1 Answers1

2

This is how I do it on windows:

  1. Open your anaconda prompt
  2. Select your environment activate my_env (for base env skip this step)
  3. Install opencv using pip install opencv-python
  4. Further install additional pkgs using pip install opencv-contrib-python
Sociopath
  • 13,068
  • 19
  • 47
  • 75