Changeset 13371
- Timestamp:
- 09/14/12 11:16:00 (13 years ago)
- Location:
- issm/trunk-jpl/externalpackages
- Files:
-
- 4 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/matplotlib/install-linux64.sh
r13370 r13371 1 1 #/bin/bash 2 2 set -eu 3 pythonversion=2.74 PYTHON=python${pythonversion}5 6 3 export GIT_SSL_NO_VERIFY=true 7 4 export CC="gcc -fPIC " … … 11 8 export FFLAGS=-ff2c 12 9 13 14 10 git clone https://github.com/matplotlib/matplotlib 15 11 mv matplotlib src -
issm/trunk-jpl/externalpackages/matplotlib/install-macosx64.sh
r13370 r13371 1 1 #/bin/bash 2 2 set -eu 3 pythonversion=2.74 PYTHON=python${pythonversion}5 3 6 4 export C_INCLUDE_PATH="$C_INCLUDE_PATH:/usr/include/c++/4.2.1" … … 12 10 export FFLAGS="-ff2c -arch x86_64 -I/usr/include/c++/4.2.1" 13 11 export ARCHFLAGS="-arch x86_64 -I/usr/include/c++/4.2.1" 14 15 16 12 17 13 git clone https://github.com/matplotlib/matplotlib … … 25 21 #sudo make -f make.osx PREFIX=$ISSM_DIR/externalpackages/matplotlib/deps PYVERSION=$pythonversion fetch deps mpl_install_std 26 22 #sudo make -f make.osx PREFIX=$ISSM_DIR/externalpackages/matplotlib/deps PYVERSION=$pythonversion mpl_install_std 27 # ${PYTHON}-c "import matplotlib; print 'Installed matplotlib', matplotlib.__version__, matplotlib.__file__"23 #python -c "import matplotlib; print 'Installed matplotlib', matplotlib.__version__, matplotlib.__file__" 28 24 29 30 #to be tried: first get freetype and zlib and libpng installed in sudo mode 25 #to be tried: first get freetype and zlib and libpng installed in sudo mode 31 26 python setup.py build 32 27 python setup.py install -
issm/trunk-jpl/externalpackages/numpy/install-linux64.sh
r13264 r13371 1 1 #!/bin/bash 2 2 set -eu 3 PYVERSION=2.74 PYTHON=python${PYVERSION}5 3 6 4 export CC="gcc -fPIC" … … 22 20 python setup.py install 23 21 cd .. 24 ${PYTHON}-c "import numpy; print 'Installed NumPy', numpy.__version__"25 ${PYTHON}-c "import numpy; numpy.test()"22 python -c "import numpy; print 'Installed NumPy', numpy.__version__" 23 python -c "import numpy; numpy.test()" -
issm/trunk-jpl/externalpackages/numpy/install-macosx-snowleopard.sh
r13266 r13371 1 1 #!/bin/bash 2 PYVERSION=2.7 3 PYTHON=python${PYVERSION} 2 set -eu 4 3 5 # gfortran 4.6 (see ISSM_DIR/externalpackages/gfortran) is necessary for ISSM compilation. 6 # On OSX 10.6, this recommended version gets installed in /usr/local/gfortran 7 export CC=/usr/local/gfortran/bin/gcc 8 export CXX=/usr/local/gfortran/bin/g++ 4 # On OSX 10.6, gfortran gets installed in /usr/local/gfortran 5 export CC="/usr/local/gfortran/bin/gcc" 6 export CXX="/usr/local/gfortran/bin/g++" 9 7 10 8 #download numpy first … … 16 14 python setup.py install 17 15 cd .. 18 ${PYTHON}-c "import numpy; print 'Installed NumPy', numpy.__version__"19 ${PYTHON}-c "import numpy; numpy.test()"16 python -c "import numpy; print 'Installed NumPy', numpy.__version__" 17 python -c "import numpy; numpy.test()" -
issm/trunk-jpl/externalpackages/scipy/install-linux64.sh
r13264 r13371 1 1 #!/bin/bash 2 2 set -eu 3 PYVERSION=2.74 PYTHON=python${PYVERSION}5 3 6 4 export CC="gcc -fPIC" … … 27 25 python setup.py install 28 26 cd .. 29 ${PYTHON}-c "import scipy; print 'Installed SciPy', scipy.__version__"30 # #${PYTHON}-c "import scipy; scipy.test()"27 python -c "import scipy; print 'Installed SciPy', scipy.__version__" 28 #python -c "import scipy; scipy.test()" -
issm/trunk-jpl/externalpackages/scipy/install-macosx-snowleopard.sh
r13264 r13371 1 1 #!/bin/bash 2 2 set -eu 3 PYVERSION=2.74 PYTHON=python${PYVERSION}5 3 6 # gfortran 4.6 (see ISSM_DIR/externalpackages/gfortran) is necessary for ISSM compilation. 7 # On OSX 10.6, this recommended version gets installed in /usr/local/gfortran 8 export CC=/usr/local/gfortran/bin/gcc 9 export CXX=/usr/local/gfortran/bin/g++ 4 # On OSX 10.6, fgortran gets installed in /usr/local/gfortran 5 export CC="/usr/local/gfortran/bin/gcc" 6 export CXX="/usr/local/gfortran/bin/g++" 10 7 11 8 #download scipy … … 17 14 python setup.py install 18 15 cd .. 19 ${PYTHON}-c "import scipy; print 'Installed SciPy', scipy.__version__"20 ${PYTHON}-c "import scipy; scipy.test()"16 python -c "import scipy; print 'Installed SciPy', scipy.__version__" 17 python -c "import scipy; scipy.test()"
Note:
See TracChangeset
for help on using the changeset viewer.