1 min read
Can you help me to solve this error counldn’t find cv2 in module.
File "download_videos.py", line 6, in import cv2 ImportError: No module named cv2
Vishal Sharma Selected answer as best November 30, 2019
1 min read
This error can be resolved by following procedure that is given below :
for windows if you have anaconda installed, you can simply do
pip install opencv-python
or
conda install -c https://conda.binstar.org/menpo opencv
if you are on linux you can do :
pip install opencv-python
or
conda install opencv
Hope it will help you in resolving your error import cv2 in python
Vishal Sharma Selected answer as best November 30, 2019