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
|
Rev | Line | |
---|
[11782] | 1 | #!/bin/bash
|
---|
[13395] | 2 | set -eu
|
---|
[11782] | 3 |
|
---|
| 4 | export CC=gcc
|
---|
| 5 | export CXX=g++
|
---|
| 6 | export FFLAGS=-ff2c
|
---|
| 7 |
|
---|
[13395] | 8 | #download scipy
|
---|
| 9 | git clone https://github.com/scipy/scipy.git
|
---|
[11782] | 10 |
|
---|
[13395] | 11 | #install scipy
|
---|
| 12 | cd scipy
|
---|
| 13 | export BLAS_SRC=$ISSM_DIR/externalpackages/blas/install/lib
|
---|
| 14 | export BLAS=$ISSM_DIR/externalpackages/blas/install/lib
|
---|
| 15 | export LAPACK_SRC=$ISSM_DIR/externalpackages/lapack/install/lib
|
---|
| 16 | export LAPACK=$ISSM_DIR/externalpackages/lapack/install/lib
|
---|
[11782] | 17 |
|
---|
[13395] | 18 | #install scipy
|
---|
| 19 | python setup.py build
|
---|
| 20 | python setup.py install
|
---|
[15402] | 21 | cd ..
|
---|
| 22 | python -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.