Hi all! I am trying to install numpy on a computer which runs Linux and on which I have no root access. The only possibility is therefore to compile numpy from source. With the following command, the compilation seems to work fine:
python setup.py install --prefix=/home/pcpm/pairet/pythonModules/numpy However, every time I try to use numpy in a python script I have the following error: from numpy import * ImportError: No module named numpy I did add the following line to my .bashrc file: export PYTHONPATH= $PYTHONPATH:/home/pcpm/pairet/pythonModules/numpy/lib64/python2.4/site-packages/numpy I am a bit puzzled with the fact that there is no file called numpy.py. What should I do to get numpy working on this machine? Any help is appreciated, Thanks in adavance, Antoine _______________________________________________ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion