source: issm/trunk/externalpackages/scipy/install-macosx-lion.sh@ 15402

Last change on this file since 15402 was 15402, checked in by cborstad, 12 years ago

CHG: added print statement to end of install scripts to confirm installation of scipy

  • Property svn:executable set to *
File size: 579 bytes
Line 
1#!/bin/bash
2set -eu
3
4export CC=gcc
5export CXX=g++
6export FFLAGS=-ff2c
7
8#download scipy
9git clone https://github.com/scipy/scipy.git
10
11#install scipy
12cd scipy
13export BLAS_SRC=$ISSM_DIR/externalpackages/blas/install/lib
14export BLAS=$ISSM_DIR/externalpackages/blas/install/lib
15export LAPACK_SRC=$ISSM_DIR/externalpackages/lapack/install/lib
16export LAPACK=$ISSM_DIR/externalpackages/lapack/install/lib
17
18#install scipy
19python setup.py build
20python setup.py install
21cd ..
22python -c "import scipy; print 'Installed SciPy', scipy.__version__"
23#python -c "import scipy; scipy.test()"
Note: See TracBrowser for help on using the repository browser.