From 393d6ca853e9946e267670340910c6cf3a1d8bba Mon Sep 17 00:00:00 2001
From: "Mads M. Pedersen" <mmpe@dtu.dk>
Date: Thu, 1 Sep 2016 14:22:47 +0200
Subject: [PATCH] install on windows

---
 docs/install_windows.md | 60 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)
 create mode 100644 docs/install_windows.md

diff --git a/docs/install_windows.md b/docs/install_windows.md
new file mode 100644
index 00000000..c36f8f9a
--- /dev/null
+++ b/docs/install_windows.md
@@ -0,0 +1,60 @@
+# How to install on Windows
+
+
+This guide describes how I installed the toolbox on a Windows machine (1/9-2016)
+ 
+- Download and install Anaconda (Python 3.5 version, 64bit installer) from <https://www.continuum.io/downloads>
+
+### Installing Anaconda
+
+* Anaconda is a professional grade, full blown scientific Python distribution.
+
+* Download and install Anaconda (Python 3.5 version, 64 bit installer) from <https://www.continuum.io/downloads>
+
+
+* Update the root Anaconda environment (type in a terminal):
+
+```
+conda update --all
+```
+
+### Create Anaconda environment
+
+* Creating an environment :
+
+```
+conda create -n py35 python=3.5
+```
+
+* Activate the envirronment:
+
+```
+activate py35
+```
+
+The python distribution in use will now be located in \<path_to_anaconda\>/env/py35/
+
+
+### Install dependencies with conda and pip
+
+* Install the necessary Python dependencies using the conda package manager:
+
+```
+conda install setuptools_scm future h5py pytables pytest nose sphinx
+conda install scipy pandas matplotlib cython xlrd coverage xlwt openpyxl
+```
+
+* Not all packages are available in the conda repositories, but they can be
+easily installed with pip:
+
+```
+pip install pyscaffold pytest-cov --no-deps
+```
+
+
+## And Finally: install wetb
+
+```
+pip install wetb
+```
+     
\ No newline at end of file
-- 
GitLab