Changeset 12825
- Timestamp:
- 07/30/12 14:25:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/scipy/install-linux64.sh
r12240 r12825 1 1 #!/bin/bash 2 PYVERSION=2.7 3 PYTHON=python${PYVERSION} 2 4 3 5 #1: install numpy … … 25 27 python setup.py build 26 28 python setup.py install 29 cd .. 30 ${PYTHON} -c "import numpy; print 'Installed NumPy', numpy.__version__" 31 ${PYTHON} -c "import numpy; numpy.test()" 27 32 28 33 … … 42 47 python setup.py build 43 48 python setup.py install 49 cd .. 50 ${PYTHON} -c "import scipy; print 'Installed SciPy', scipy.__version__" 51 ${PYTHON} -c "import scipy; scipy.test()" 44 52 45 53 elif [[ $install == "3" ]];then
Note:
See TracChangeset
for help on using the changeset viewer.