ModuleNotFoundError No Module Named Cv2
I am getting this modulenotfounderror: no module named 'cv2'
when I tried to import the cv2 module in jupyter notebook.
import cv2 ModuleNotFoundError Traceback (most recent call last)
in ----> 1 import cv2 ModuleNotFoundError: No module named 'cv2'
Regarding modulenotfounderror no module named cv2 This error may occur if you didn't install opencv module in your system. So first check this module is available or not.
$ pip list or conda listIf it is not available, then install this module.
$ pip install opencv-python or conda install opencv-python
But before that, try to check numpy module is available or not. If numpy is not available, then install this first.
$ pip install numpyHope this will solve your error.