I have ubuntu 12.10. I tried to install several packages for python like numpy, scipy and matplotlib. I ran the command:
sudo apt-get install python-numpy python-scipy python-matplotlib
But when I try to import matplotlib on python's (3.2) shell (or even numpy and scipy), I get an error like
>>> import numpy
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import numpy
ImportError: No module named 'numpy'
Yet, I tried to lauch python on the linux shell and import the modules: there is no problem there...
Why can I import the modules on python 2.x and not on 3.x?