Error while importing cv2

As per the instruction in the video, i ran the command import cv2 in a cell on jupyter notebook, but it generates an error called ‘no module named cv2’
how do I resolve it?

Hey @aniketdogra09, this is because you may have not installed opencv on your system. Please do the same by typing the following command in the anaconda prompt :

conda install -c conda-forge opencv

Hope this helps.
Happy coding :slight_smile:

I did as per your suggesstion