Changes between Version 46 and Version 47 of InstallWindowsSvn
- Timestamp:
- Mar 28, 2015, 2:41:54 PM (10 years ago)
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 = 2 2 3 3 == Introduction == … … 51 51 To install git use the [http://git-scm.com/download/win windows download link] 52 52 53 == Manual install==53 == Manually install dependencies == 54 54 55 55 It 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. … … 59 59 60 60 You should now have all the dependencies installed. You should fire up a new {{{cmd.exe}}} and install {{{anuga}}} 61 62 You 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 66 If just want the latest released version of the package then use {{{pip}}} via 67 68 {{{ 69 pip install anuga 70 }}} 71 72 If the install is successful, test the instal via 73 74 {{{ 75 python -c "import anuga; anuga.test()" 76 }}} 77 78 79 === Install via source === 61 80 62 81 First we need to get the anuga source code.