Changeset 12825


Ignore:
Timestamp:
07/30/12 14:25:17 (13 years ago)
Author:
cborstad
Message:

added test runs to confirm scipy/numpy installation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/scipy/install-linux64.sh

    r12240 r12825  
    11#!/bin/bash
     2PYVERSION=2.7
     3PYTHON=python${PYVERSION}
    24
    35#1: install numpy
     
    2527        python setup.py build
    2628        python setup.py install
     29        cd ..
     30        ${PYTHON} -c "import numpy; print 'Installed NumPy', numpy.__version__"
     31        ${PYTHON} -c "import numpy; numpy.test()"
    2732
    2833       
     
    4247        python setup.py build
    4348        python setup.py install
     49        cd ..
     50        ${PYTHON} -c "import scipy; print 'Installed SciPy', scipy.__version__"
     51        ${PYTHON} -c "import scipy; scipy.test()"
    4452
    4553elif [[ $install == "3" ]];then
Note: See TracChangeset for help on using the changeset viewer.