I am attempting to install OpenCV on my linux computerI followed this installation guide:
Linux / Mac Users:
pip3 install numpy or apt-get install python3-numpy. You may need to apt-get install python3-pip.
pip3 install matplotlib or apt-get install python3-matplotlib.
apt-get install python-OpenCV.
...
everything installs, except the last one Python-OpenCV error:
E: unable to locate package python-OpenCV
and then when I run python in the terminal and try to run:
import matplotlab
I get the error
Traceback (most recent call last):
file "stdin>", line 1, in <module>
Importerror: no module named 'matlabplot'
meanwhile
import cv2
&
import numpy
run without error and seem to work, this is also the case when I run a .py file that calls for importing those three.
Any information will be helpful, i am fairly new to python and linux :)

import matplotlibnotmatlabplotormatplotlab- marcmanapt-get install python-opencvso yours might be too. (Generally Linux is very fussy about the case of every command - always a gotcha for people new to Linux). - GregHNZ