Changeset 2656
- Timestamp:
- 10/09/12 12:05:47 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/install_osx.sh
r2655 r2656 9 9 ASAPVERS=4.1 10 10 OSXVERS=$(sw_vers | grep -o '10\.[7-8]') 11 if [ -n ${OSXVERS} ]; then echo "Only OS X >= 10.7 supported"; exit 1; fi 11 echo $OSXVERS 12 if [ -z ${OSXVERS} ]; then echo "Only OS X >= 10.7 supported"; exit 1; fi 12 13 ASAPEGG="${FTPURL}/${ASAPVERS}/asap-4.1.0-py2.7-macosx-${OSXVERS}-intel.egg" 13 14 MPLEGG="${FTPURL}/matplotlib/matplotlib-1.1.1-py2.7-macosx-${OSXVERS}-intel.egg" … … 17 18 then 18 19 echo "Matplotlib not installed. Installing from CASS ftp server..." 19 /usr/bin/easy_install-2.7 ${MPLEGG}20 /usr/bin/easy_install-2.7 -U ${MPLEGG} 20 21 fi 21 22 22 23 # This should pull in IPython if required 23 /usr/bin/easy_install-2.7 ${ASAPEGG}24 /usr/bin/easy_install-2.7 -U ${ASAPEGG} 24 25 25 26 # make sure readline is installed … … 27 28 28 29 # update measures data 29 /usr/local/bin/asap_update_data 30 MPLTMP=/tmp/mpltmp 31 mkdir ${MPLTMP} 32 MPLCONFIGDIR="${MPLTMP}" /usr/local/bin/asap_update_data 33 rm -rf ${MPLTMP}
Note:
See TracChangeset
for help on using the changeset viewer.