Changes between Version 29 and Version 30 of NumpyInstall


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

--

Legend:

Unmodified
Added
Removed
Modified
  • NumpyInstall

    v29 v30  
    106106=== Windows ===
    107107
     108Install python 2.5:
     109{{{
     110execute C:\python-2.5.4.msi
     111
     112}}}
     113and add ';C:\python25' to the end of the PATH environmental variable
     114.
     115
     116
     117Install the MinGW package (requires an internet connection) by:
     118
     119{{{
     120execute MinGW-5.1.4.exe
     121
     122 . install MinGW base tools
     123
     124 . g++ compiler
     125
     126 . MinGW Make
     127
     128}}}
     129    add ';C:\MinGW\bin' to the end of the PATH environmental variable
     130
     131
     132
     133install numpy:
     134
     135    execute numpy-1.3.0-win32-superpack-python2.5.exe
     136
     137
     138
     139install NetCDF4:
     140
     141    execute netCDF_binary_4.0.exe
     142
     143    add ';C:\netcdf4\bin' to the end of the PATH environmental variable
     144
     145
     146
     147install ScientificPython:
     148
     149    execute ScientificPython-2.9.0.win32-py2.5.exe
     150
     151    (this installer built using the 'minGW hack' environment)
     152
     153
     154
     155install psyco:
     156
     157    execute psyco-1.6.win32-py25.exe
     158
     159   
     160
     161install matplotlib:
     162
     163    execute matplotlib-0.98.5.2.win32-py2.5.exe
     164
     165    and put MSVCP71.DLL into C:\windows\system32
     166
     167    (possibly do DLL move in same installer as for netCDF)   
     168
     169
     170
     171get ANUGA source code:
     172
     173    cd \
     174
     175    svn co https://datamining.anu.edu.au/svn/ga
     176
     177  or:
     178
     179    cd \ga
     180
     181    svn up
     182
     183    cd \
     184
     185
     186
     187to test all of ANUGA:
     188
     189    create a PYTHONPATH environment variable containing 'C:\ga\branches\numpy'
     190
     191    cd ga\branches\numpy\anuga
     192
     193    python compile_all.py
     194
     195    python test_all.py                          # OK
     196
     197    cd \
     198
     199
     200
     201to validate ANUGA:
     202
     203    cd ga\branches\numpy_anuga_validation\automated_validation_tests
     204
     205    python validate_all.py                      # OK
     206
     207    cd \
     208
     209
    108210
    109211= Testing the installation =