| 1 | == Windows post-installation test and validation == |
| 2 | |
| 3 | Before testing, you must have installed the ANUGA system. How to get the source code is documented |
| 4 | elsewhere, but to be brief, you can either download the latest '''numpy''' release package and unpack |
| 5 | it into the suggested place ({{{C:\Python25\Lib\site-packages}}}), or you can get the numpy source |
| 6 | tree through subversion. Follow the test and validation precodures in the current installation guide |
| 7 | if you go this way. |
| 8 | |
| 9 | If you get the numpy ANUGA system through subversion, you will probably download the {{{branches/numpy}}} |
| 10 | source tree to a place of your choice, say {{{C:\ANUGA}}}. In this case you need to set the PYTHONPATH |
| 11 | environment variable to run ANUGA: |
| 12 | {{{ |
| 13 | cd C:\ANUGA |
| 14 | checkout https://datamining.anu.edu.au/svn/ga/branches/numpy |
| 15 | checkout https://datamining.anu.edu.au/svn/ga/branches/numpy_anuga_validation # needed to validate ANUGA |
| 16 | set PYTHONPATH environment variable to C:\ANUGA\numpy |
| 17 | }}} |
| 18 | The Windows Tortoise SVN client can be used to access the repository. |
| 19 | |
| 20 | To test your ANUGA install, do: |
| 21 | {{{ |
| 22 | cd C:\ANUGA\numpy\anuga |
| 23 | python compile_all.py |
| 24 | python test_all.py |
| 25 | }}} |
| 26 | |
| 27 | To validate ANUGA, do: |
| 28 | {{{ |
| 29 | cd C:\ANUGA\numpy_anuga_validation\automated_validation_tests |
| 30 | python validate_all.py |
| 31 | }}} |