Changes between Version 46 and Version 47 of InstallWindowsSvn


Ignore:
Timestamp:
Mar 28, 2015, 2:41:54 PM (9 years ago)
Author:
steve
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallWindowsSvn

    v46 v47  
    1 = Installing current version of ANUGA research code on Windows  =
     1= Installing current development version of ANUGA research code on Windows  =
    22
    33== Introduction ==
     
    5151To install git use the [http://git-scm.com/download/win windows download link]
    5252
    53 == Manual install ==
     53== Manually install dependencies ==
    5454
    5555It is possible to install the required environment manually. You would need to install {{{Mingw}}} to provide a compiler, the standard distribution of {{{python27}}} and then precompiled python libraries for {{{numpy, scipy, matplotlib, netcdf4}}} from a site like [http://www.lfd.uci.edu/~gohlke/pythonlibs/]. It would be interesting to hear feedback on this option, as there is an opportunity to use versions using the Intel Math Kernel Library, which should provide a useful increase in speed.
     
    5959
    6060You should now have all the dependencies installed. You should fire up a new {{{cmd.exe}}} and install {{{anuga}}}
     61
     62You can just install the {{{anuga}}} library using {{{pip}}} or download the full repo with example code and manual using {{{git}}}.
     63
     64=== pip install ===
     65
     66If just want the latest released version of the package then use {{{pip}}} via
     67
     68{{{
     69pip install anuga
     70}}}
     71
     72If the install is successful, test the instal via
     73
     74{{{
     75python -c "import anuga; anuga.test()"
     76}}}
     77
     78
     79=== Install via source ===
    6180
    6281First we need to get the anuga source code.