Changes between Version 34 and Version 35 of NumpyInstall


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

--

Legend:

Unmodified
Added
Removed
Modified
  • NumpyInstall

    v34 v35  
    186186Before testing, you must have installed the ANUGA system.  How to get the source code is documented
    187187elsewhere, but to be brief, you can either download the latest '''numpy''' release package and unpack
    188 it into the suggested place ({{{/usr/lib/python2.5/site-packages}}}), or you can get the numpy source
    189 tree through subversion.
     188it into the suggested place ({{{C:\Python25\Lib\site-packages}}}), or you can get the numpy source
     189tree through subversion.  Follow the test and validation precodures in the current installation guide
     190if you go this way.
    190191
    191192If you get the numpy ANUGA system through subversion, you will probably download the {{{branches/numpy}}}
    192 source tree to a place of your choice, say {{{~/ANUGA}}}.  In this case you need to set the PYTHONPATH
     193source tree to a place of your choice, say {{{C:\ANUGA}}}.  In this case you need to set the PYTHONPATH
    193194environment variable to run ANUGA:
    194195{{{
    195 cd ~/ANUGA
    196 svn co https://datamining.anu.edu.au/svn/ga/branches/numpy
    197 svn co https://datamining.anu.edu.au/svn/ga/branches/numpy_anuga_validation  # need to validate ANUGA
    198 export PYTHONPATH=~/ANUGA/numpy
    199 }}}
     196cd C:\ANUGA
     197checkout https://datamining.anu.edu.au/svn/ga/branches/numpy
     198checkout https://datamining.anu.edu.au/svn/ga/branches/numpy_anuga_validation  # needed to validate ANUGA
     199set PYTHONPATH environment variable to C:\ANUGA\numpy
     200}}}
     201The Windows Tortoise SVN client can be used to access the repository.
    200202
    201203To test your ANUGA install, do:
    202204{{{
    203 cd ~/ANUGA/numpy/anuga
     205cd C:\ANUGA\numpy\anuga
    204206python compile_all.py
    205207python test_all.py
     
    208210To validate ANUGA, do:
    209211{{{
    210 cd ~/ANUGA/numpy_anuga_validation/automated_validation_tests
     212cd C:\ANUGA\numpy_anuga_validation\automated_validation_tests
    211213python validate_all.py
    212214}}}