I wanted some numeric modules of python. I installed canopy from enthought that is supposed to have all the necessary modules I need. e.g.: matplotlib.pyplot and scipy. After installation, I tried to import the module, I get the following error. I have python2.7 running in my mac OS X. should I have to change my pythonPath or something to have this work, I searched around the web, but could not find a clear answer.
import matplotlib.pyplot as plt
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named matplotlib.pyplot
import scipy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named scipy
Thanks