diff --git a/docs/install_windows.md b/docs/install_windows.md new file mode 100644 index 0000000000000000000000000000000000000000..c36f8f9a391edd460b0d7aeab4113221855447b4 --- /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