python dump
Posted on 07. Jun, 2010 by admin in Code, How To
A collection of python related stuff that it’s good to remember.
Regarding installation of libraries (for Mac OS X 10.5.x i.e. 32bit)
References
- http://www.scipy.org/Installing_SciPy/Mac_OS_X
- Make sure you have g++ -> v4 (just type g++ and see the version)
- Make sure you have fortran for Mac http://r.research.att.com/gfortran-4.2.3.dmg
- Make a nice folder Documents/code/python/libs/
- svn co http://svn.scipy.org/svn/numpy/trunk numpy
- svn co http://svn.scipy.org/svn/scipy/trunk scipy
- cd numpy; python setup.py build; sudo python setup.py install
- repeat it for scipy (this will take looong time) [you might want to test the setup, you will need nose http://code.google.com/p/python-nose/




