Changes between Version 9 and Version 10 of InstallOsxLeopard


Ignore:
Timestamp:
03/27/09 09:52:00 (15 years ago)
Author:
Malte Marquarding
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallOsxLeopard

    v9 v10  
    99         curl -O http://python.org/ftp/python/2.5.4/python-2.5.4-macosx.dmg
    1010}}}
    11     the open disk image and install. In a terminal run {{{ python -V }}}, which sould 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.
    1212 
    1313All these will probably work with the latest released version as well.
     
    2121{{{
    2222         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
    2325}}}
    2426
    2527 4) numpy -
    2628{{{
    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
    2832}}}
    2933
     
    3337}}}
    3438    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}}}
    3544
    3645 6) asap -
     
    4049         cd asap-2.3.1-osx-10.5-x86
    4150         sudo ./install
     51         cd
     52         # test it
     53         python -c ' from asap import *'
     54         # install data needed for frequency conversions
    4255         sudo asap_update_data
    4356}}}