0

I got the ModuleNotFoundError and cannot install cv2. What to do now?

I tried to download cv2 using pip and I got this error

Could not find a version that satisfies the requirement cv2 (from versions: none).

Dan Mašek
  • 17,852
  • 6
  • 57
  • 85

2 Answers2

1

you can install opencv using this

    pip install opencv-python

now opencv gets installed

0

Have you tried to install the package?

conda install -c menpo opencv

Reference: How do I install Python OpenCV through Conda?

cavalcantelucas
  • 1,362
  • 3
  • 12
  • 34