Skip to content
Snippets Groups Projects
Commit 393d6ca8 authored by Mads M. Pedersen's avatar Mads M. Pedersen
Browse files

install on windows

parent 152d3931
No related branches found
No related tags found
No related merge requests found
Pipeline #
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment