Changes between Initial Version and Version 1 of NumpyUbuntuTest


Ignore:
Timestamp:
Jun 11, 2009, 2:39:51 PM (15 years ago)
Author:
rwilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NumpyUbuntuTest

    v1 v1  
     1== Ubuntu pst-installation test and validation ==
     2
     3Before testing, you must have installed the ANUGA system.  How to get the source code is documented
     4elsewhere, but to be brief, you can either download the latest '''numpy''' release package and unpack
     5it into the suggested place ({{{/usr/lib/python2.5/site-packages}}}), or you can get the numpy source
     6tree through subversion.
     7
     8If you get the numpy ANUGA system through subversion, you will probably download the {{{branches/numpy}}}
     9source tree to a place of your choice, say {{{~/ANUGA}}}.  In this case you need to set the PYTHONPATH
     10environment variable to run ANUGA:
     11{{{
     12cd ~/ANUGA
     13svn co https://datamining.anu.edu.au/svn/ga/branches/numpy
     14svn co https://datamining.anu.edu.au/svn/ga/branches/numpy_anuga_validation  # need to validate ANUGA
     15export PYTHONPATH=~/ANUGA/numpy
     16}}}
     17Note that the PYTHONPATH environment variable needs to be persistent, so you might consider putting the
     18above command in the appropriate file (~/.bashrc, etc).
     19
     20To test your ANUGA install, do:
     21{{{
     22cd ~/ANUGA/numpy/anuga
     23python compile_all.py
     24python test_all.py
     25}}}
     26
     27To validate ANUGA, do:
     28{{{
     29cd ~/ANUGA/numpy_anuga_validation/automated_validation_tests
     30python validate_all.py
     31}}}