Changes between Version 19 and Version 20 of NumpyInstall


Ignore:
Timestamp:
Jun 11, 2009, 1:57:52 PM (16 years ago)
Author:
rwilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NumpyInstall

    v19 v20  
    106106
    107107
    108 === Testing the installation ===
     108== Testing the installation ==
     109
     110=== Ubuntu ===
    109111
    110112Before testing, you must have installed the ANUGA system.  How to get the source code is documented
     
    135137python validate_all.py
    136138}}}
     139
     140=== Windows ===
     141
     142Before testing, you must have installed the ANUGA system.  How to get the source code is documented
     143elsewhere, but to be brief, you can either download the latest '''numpy''' release package and unpack
     144it into the suggested place ({{{/usr/lib/python2.5/site-packages}}}), or you can get the numpy source
     145tree through subversion.
     146
     147If you get the numpy ANUGA system through subversion, you will probably download the {{{branches/numpy}}}
     148source tree to a place of your choice, say {{{~/ANUGA}}}.  In this case you need to set the PYTHONPATH
     149environment variable to run ANUGA:
     150{{{
     151cd ~/ANUGA
     152svn co https://datamining.anu.edu.au/svn/ga/branches/numpy
     153svn co https://datamining.anu.edu.au/svn/ga/branches/numpy_anuga_validation  # need to validate ANUGA
     154export PYTHONPATH=~/ANUGA/numpy
     155}}}
     156
     157To test your ANUGA install, do:
     158{{{
     159cd ~/ANUGA/numpy/anuga
     160python compile_all.py
     161python test_all.py
     162}}}
     163
     164To validate ANUGA, do:
     165{{{
     166cd ~/ANUGA/numpy_anuga_validation/automated_validation_tests
     167python validate_all.py
     168}}}