Changes between Version 30 and Version 31 of NumpyInstall


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

--

Legend:

Unmodified
Added
Removed
Modified
  • NumpyInstall

    v30 v31  
    109109{{{
    110110execute C:\python-2.5.4.msi
    111 
    112 }}}
    113 and add ';C:\python25' to the end of the PATH environmental variable
    114 .
    115 
     111}}}
     112and add ';C:\python25' to the end of the PATH environmental variable.
    116113
    117114Install the MinGW package (requires an internet connection) by:
    118 
    119115{{{
    120116execute MinGW-5.1.4.exe
    121 
    122117 . install MinGW base tools
    123 
    124118 . g++ compiler
    125 
    126119 . MinGW Make
    127 
    128 }}}
    129     add ';C:\MinGW\bin' to the end of the PATH environmental variable
    130 
    131 
    132 
    133 install numpy:
    134 
    135     execute numpy-1.3.0-win32-superpack-python2.5.exe
    136 
    137 
     120}}}
     121and add ';C:\MinGW\bin' to the end of the PATH environmental variable.
     122
     123Install numpy:
     124{{{
     125execute numpy-1.3.0-win32-superpack-python2.5.exe
     126}}}
    138127
    139128install 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 
    147 install ScientificPython:
    148 
    149     execute ScientificPython-2.9.0.win32-py2.5.exe
    150 
    151     (this installer built using the 'minGW hack' environment)
    152 
    153 
     129{{{
     130execute netCDF_binary_4.0.exe
     131}}}
     132and add ';C:\netcdf4\bin' to the end of the PATH environmental variable
     133
     134Install ScientificPython:
     135{{{
     136execute ScientificPython-2.9.0.win32-py2.5.exe
     137}}}
    154138
    155139install psyco:
    156 
    157     execute psyco-1.6.win32-py25.exe
    158 
    159    
    160 
    161 install 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 
    171 get 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 
    187 to 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 
    201 to 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 
     140{{{
     141execute psyco-1.6.win32-py25.exe
     142}}}
     143This is not strictly required, but it's small and sppeds up your ANUGA system.
     144
     145Install matplotlib:
     146{{{
     147execute matplotlib-0.98.5.2.win32-py2.5.exe
     148}}}
    210149
    211150= Testing the installation =