I\'m trying to import cv2 on Jupyter notebook but I get this error:
ImportError: No module named cv2
I am
Go to your notebook, in menu section
kernel -> Change kernel -> Python
Now in the notebook run following command to install opencv2 in the selected environment kernel
python2:
!pip install opencv-python
python3:
!pip3 install opencv-python