OpenCV-Playing-Card-Detector icon indicating copy to clipboard operation
OpenCV-Playing-Card-Detector copied to clipboard

OpenCV & Numpy libraries are not included w/Anaconda

Open JamoCA opened this issue 7 years ago • 1 comments

In Windows 10, the default installation of Anaconda 3.6 does not include OpenCV & Numpy libraries. These are required to be downloaded and installed separately from the Anaconda repository.

OpenCV https://anaconda.org/anaconda/opencv To install, run "Prompt" and type: conda install -c anaconda opencv

Install Numpy (registration required) https://anaconda.org/anaconda/numpy To install, run "Prompt" and type: conda install -c anaconda numpy

JamoCA avatar Jan 14 '18 19:01 JamoCA

For anyone else on windows, I was still receiving:

no module named 'cv2'

I then had to run:

conda update conda -c conda-canary pip install opencv-python

nullablebool avatar Jun 13 '20 20:06 nullablebool