Changes between Version 45 and Version 46 of InstallWindowsSvn


Ignore:
Timestamp:
Mar 28, 2015, 2:25:15 PM (10 years ago)
Author:
steve
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallWindowsSvn

    v45 v46  
    4747== Git ==
    4848
    49 Our preferred method of installing {{{anuga}}} is using {{{git}}}. Though you can use subverson or download a zipped file.
     49Our preferred method of installing {{{anuga}}} and updating is to use {{{git}}} (Though you can use subverson or download a zipped file).
    5050
    51 To install git use the [http://git-scm.com/download/win link]
     51To install git use the [http://git-scm.com/download/win windows download link]
    5252
    5353== Manual install ==
     
    6565
    6666
    67 To obtain the anuga repo from  github use
     67To obtain the anuga repo from  github use {{{git clone}}} i.e.
    6868
    6969{{{
     
    8686=== Zipped version ===
    8787
    88 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.
     88Finally 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.
    8989
    9090
     
    9999
    100100{{{
    101 python setup.py build install
     101python setup.py install
    102102}}}
    103103
     
    123123== Updating ==
    124124
    125 From time to time you should update your version of anuga. This is fairly easy if you used subversion or git to obtain the source. You will then just need to {{{update}}} (with subversion) or {{{pull}}} (with git).
     125From time to time you should update your version of anuga. This is fairly easy if you used subversion or git to obtain the source. You will then just need to {{{pull}}} (with git) or {{{update}}} (with subversion).
     126
     127I.e. if using {{{git}}} fire up {{{cmd.exe}}}, change into the {{{anuga_core}}} directory and run
     128
     129{{{
     130git pull
     131}}}
    126132
    127133
    128 Then again from the {{{anuga_core}}} directory recompile the code and check the unit tests via
     134Then  re-install the latest version of the code and check the unit tests via
    129135
    130136{{{