Closed ProGamerGov closed 7 years ago
ubuntu@ubuntu-VirtualBox:~/neural-painter$ python3 neural_painter.py Traceback (most recent call last): File "neural_painter.py", line 15, in <module> import cv2 ImportError: No module named 'cv2' ubuntu@ubuntu-VirtualBox:~/neural-painter$
I installed OpenCV2 using sudo apt-get install -y libopencv-dev from this Github guide.
sudo apt-get install -y libopencv-dev
After running:
sudo apt-get install python-opencv
I get:
ubuntu@ubuntu-VirtualBox:~/neural-painter$ python neural_painter.py Compiling... Drawing...
So I think I solved the issue.
I installed OpenCV2 using
sudo apt-get install -y libopencv-dev
from this Github guide.