| | 108 | Install python 2.5: |
| | 109 | {{{ |
| | 110 | execute C:\python-2.5.4.msi |
| | 111 | |
| | 112 | }}} |
| | 113 | and add ';C:\python25' to the end of the PATH environmental variable |
| | 114 | . |
| | 115 | |
| | 116 | |
| | 117 | Install the MinGW package (requires an internet connection) by: |
| | 118 | |
| | 119 | {{{ |
| | 120 | execute 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 | |
| | 133 | install numpy: |
| | 134 | |
| | 135 | execute numpy-1.3.0-win32-superpack-python2.5.exe |
| | 136 | |
| | 137 | |
| | 138 | |
| | 139 | install 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 | |
| | 154 | |
| | 155 | install 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 | |