Changes between Initial Version and Version 1 of NumpyWindowsTest


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

--

Legend:

Unmodified
Added
Removed
Modified
  • NumpyWindowsTest

    v1 v1  
     1== Windows post-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 ({{{C:\Python25\Lib\site-packages}}}), or you can get the numpy source
     6tree through subversion.  Follow the test and validation precodures in the current installation guide
     7if you go this way.
     8
     9If you get the numpy ANUGA system through subversion, you will probably download the {{{branches/numpy}}}
     10source tree to a place of your choice, say {{{C:\ANUGA}}}.  In this case you need to set the PYTHONPATH
     11environment variable to run ANUGA:
     12{{{
     13cd C:\ANUGA
     14checkout https://datamining.anu.edu.au/svn/ga/branches/numpy
     15checkout https://datamining.anu.edu.au/svn/ga/branches/numpy_anuga_validation  # needed to validate ANUGA
     16set PYTHONPATH environment variable to C:\ANUGA\numpy
     17}}}
     18The Windows Tortoise SVN client can be used to access the repository.
     19
     20To test your ANUGA install, do:
     21{{{
     22cd C:\ANUGA\numpy\anuga
     23python compile_all.py
     24python test_all.py
     25}}}
     26
     27To validate ANUGA, do:
     28{{{
     29cd C:\ANUGA\numpy_anuga_validation\automated_validation_tests
     30python validate_all.py
     31}}}