|
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
|
|---|
| 2 | set -eu
|
|---|
| 3 |
|
|---|
| 4 | export CC=gcc
|
|---|
| 5 | export CXX=g++
|
|---|
| 6 | export FFLAGS=-ff2c
|
|---|
| 7 |
|
|---|
| 8 | #download scipy
|
|---|
| 9 | git clone https://github.com/scipy/scipy.git
|
|---|
| 10 |
|
|---|
| 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
|
|---|
| 17 |
|
|---|
| 18 | #install scipy
|
|---|
| 19 | python setup.py build
|
|---|
| 20 | python setup.py install
|
|---|
| 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.