i like this post (click again to cancel)
1
i dont like this post (click again to cancel) remove favorite mark from this question (click again to restore mark)

How to install numpy and scipy on Ubuntu ?

flag offensive community wiki
comments (1)
1 Answers:
i like this answer (click again to cancel)
0
i dont like this answer (click again to cancel)

Unless you want the last version of numpy or scipy, you should use the version available in your distribution:

apt-get install python-numpy python-scipy

If you really need to build from sources, you need the following packages on Ubuntu (8.10 and above), and on Debian Sarge and above:

apt-get install python-dev libatlas-base-dev python-nose

You can then build both numpy and scipy as follows, inside their respective source tree:

python setup.py build_ext --fcompiler=gnu95 install --prefix=where_to_install_numpy

Those instructions work without editing the site.cfg.

permanent link | flag offensive
asked 2009-10-19 00:48:59
cdavid's gravatar image
51
add comment
Your answer:
You are now not logged in but you can answer first and then login
toggle preview

Made with Django.