I am new to Python and want to use its plot
functionality to create graphs. I am using ubuntu 12.04. I followed the Python installation steps from http://eli.thegreenplace.net/2011/10/10/installing-python-2-7-on-ubuntu/ but when I do
from pylab import *
I am getting this error
>>> from pylab import *
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named pylab
My Python version is python 2.7
. Can anybody tell me what I am missing here?
pip install matplotlib
. – Vocalism