Changes between Version 11 and Version 12 of InstallOsxLeopard
- Timestamp:
- 03/27/09 09:59:16 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallOsxLeopard
v11 v12 55 55 sudo asap_update_data 56 56 }}} 57 57 58 Install as non-root 59 {{{ 60 curl -O ftp://ftp.atnf.csiro.au/pub/software/asap/current/asap-2.3.1-osx-10.5-x86.tar.bz2 61 tar jxf asap-2.3.1-osx-10.5-x86.tar.bz2 62 cd asap-2.3.1-osx-10.5-x86 63 ./install -p $HOME -m $HOME/python # will install 64 # Then add the following environment variables 65 # for bash 66 export PATH=${HOME}/bin:${PATH} 67 export PYTHONPATH=${HOME}/python:${PYTHONPATH} 68 asap_update_data 69 cd 70 # test it 71 python -c ' from asap import *' 72 }}} 73