Changes between Version 2 and Version 3 of InstallWindowsGohlke


Ignore:
Timestamp:
Mar 31, 2015, 5:18:57 PM (10 years ago)
Author:
steve
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallWindowsGohlke

    v2 v3  
    6363
    6464
    65 == Git ==
    66 
    67 Our preferred method of installing {{{anuga}}} and updating is to use {{{git}}} (Though you can use subverson or download a zipped file).
    68 
    69 To install git use the [http://git-scm.com/download/win windows download link]
    7065
    7166
     
    7570
    7671
    77 == Download ANUGA ==
     72== Installing ANUGA via pip ==
    7873
    7974You should now have all the dependencies installed. You should fire up a new {{{cmd.exe}}} and install {{{anuga}}}
     
    8984}}}
    9085
    91 If the install is successful, test the instal via
     86If the install is successful, test the install via
    9287
    9388{{{
     
    9691
    9792
    98 === Install via source ===
    9993
    100 First we need to get the anuga source code.
     94
     95== Install current development version ===
     96
     97
     98=== Git ===
     99
     100Our preferred method of obtaining the most current version of {{{anuga}}} is to use {{{git}}} (Though you can use subverson or download a zipped file).
     101
     102Download and run the  [http://git-scm.com/download/win windows git installer]
     103
     104
     105
    101106
    102107=== Clone anuga via git ===
     108We need to obtain (clone) the anuga source code.
    103109
    104 
    105 To obtain the anuga repo from  github use {{{git clone}}} i.e.
     110To obtain the anuga repo from  github use {{{git clone}}} i.e. from a new cmd line run the command
    106111
    107112{{{
     
    109114}}}
    110115
    111 === Checkout anuga via svn  ===
    112116
    113 You can also check out the anuga repository using subversion.
    114 I suggest installing [http://tortoisesvn.net/downloads.html tortoise svn downloads] and then checking out the following svn repository.
    115 When you installed {{{tortoise svn}}} it creates a few extra menu items to your right click menu in the file manager. Just choose "tortoise" checkout to download the code.
    116 
    117 {{{
    118 https://anuga.anu.edu.au/svn/anuga/trunk/anuga_core
    119 }}}
    120 
    121 
    122 
    123 
    124 === Zipped version ===
    125 
    126 Finally a zipped version of the latest development version of {{{anuga}}} is available from github at [https://github.com/GeoscienceAustralia/anuga_core/archive/master.zip] and the latest released version at sourceforge [http://sourceforge.net/projects/anuga/files/anuga_1.3/anuga_1.3.10.zip] You will need to unzip the file into a directory called {{{anuga_core}}} perhaps in your home directory.
    127 
    128 
    129 
    130 
    131 == Installing ANUGA ==
     117== Buils and Install ANUGA ==
    132118
    133119You should now have an anuga_core directory.
    134120
    135121Now go to the directory anuga_core and build and install anuga.
    136 Fire up a cmd terminal, change to the {{{anuga_core}}} directory and run
     122Change to the {{{anuga_core}}} directory and run
    137123
    138124{{{
     
    151137
    152138
    153 === Note ===
    154 At present the Anaconda (conda) version of {{{gdal}}} is missing the {{{gdal}}} data directory (presumably to save space). This will cause some error messages of the form "ERROR 4: Unable to open EPSG support file gcs.csv". It should be fine to disregard these errors messages. It would be possible to download the gdal data directory and point the {{{GDAL_DATA}}} environment variable to the data directory.
    155 
    156 
    157139== Conclusion ==
    158140
    159 Hopefully all the unit tests pass. As this is bleeding edge there are sometimes a small number of failures as this is a work in progress. Have a look at the demos in the directory anuga_core/documentation/user_manual/demos (along with the user manual) to see how to use anuga.
     141Hopefully all the unit tests pass. As this is bleeding edge there are sometimes a small number of failures as this is a work in progress. Have a look at the {{{examples}}} in the directory {{{anuga_core/examples}}} (along with the user manual in {{{anuga_core/doc}}}) to see how to use anuga.
    160142
    161143== Updating ==