Changes between Version 9 and Version 10 of InstallOsxLeopard
- Timestamp:
- 03/27/09 09:52:00 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallOsxLeopard
v9 v10 9 9 curl -O http://python.org/ftp/python/2.5.4/python-2.5.4-macosx.dmg 10 10 }}} 11 the open disk image and install. In a terminal run {{{ python -V }}}, which s ould return {{{ Python 2.5.4 }}}. If not log out and log back in.11 the open disk image and install. In a terminal run {{{ python -V }}}, which should return {{{ Python 2.5.4 }}}. If not log out and log back in. 12 12 13 13 All these will probably work with the latest released version as well. … … 21 21 {{{ 22 22 sudo easy_install ftp://ftp.atnf.csiro.au/pub/software/asap/osx-dependencies/ipython-0.9.1-py2.5.egg 23 #test it 24 ipython # Ctrl-D o exit 23 25 }}} 24 26 25 27 4) numpy - 26 28 {{{ 27 sudo easy_install ftp://ftp.atnf.csiro.au/pub/software/asap/osx-dependencies/numpy-1.2.1-py2.5-macosx-10.3-i386.egg 29 sudo easy_install ftp://ftp.atnf.csiro.au/pub/software/asap/osx-dependencies/numpy-1.2.1-py2.5-macosx-10.3-i386.egg 30 # test it 31 python -c 'from numpy import *' # should return without error 28 32 }}} 29 33 … … 33 37 }}} 34 38 then unzip and install 39 {{{ 40 # test it 41 ipython -pylab # then in ipython 42 plot(range(10)) # should bring up a window with a line plotted 43 }}} 35 44 36 45 6) asap - … … 40 49 cd asap-2.3.1-osx-10.5-x86 41 50 sudo ./install 51 cd 52 # test it 53 python -c ' from asap import *' 54 # install data needed for frequency conversions 42 55 sudo asap_update_data 43 56 }}}