Reputation: 83
I followed the instructions to install opencv in ubuntu from the link https://linuxize.com/post/how-to-install-opencv-on-ubuntu-18-04/#disqus_thread.
The module is installed properly. But when I import it in python I get the error "No module named 'cv2'" What can I do?
Upvotes: 0
Views: 301
Reputation: 1427
To install the latest stable version of opencv-python 4.1.2.30
with pip
, use the below command:
pip install opencv-python
Upvotes: 1