Skip to content

Installation

Andreas Sjödin edited this page May 29, 2019 · 6 revisions

Before you go any further, make sure you have Python3 and that the expected version is available from your command line. You can check this by running:

python --version

You should get some output like Python 3.6.3. If you do not have Python, please install the latest 3.x version from python.org or by using conda.

doepipeline depends on a handful other Python modules (See requirement file) and it is recommanded to install it using either conda or pip.

conda

To install doepipeline into an existing conda environment you first need to add the conda-forge channel.

conda config --add channels conda-forge

Then install using the following command

conda install doepipeline

If you already installed doepipeline it may be updated using following command:

conda update doepipeline

Learn more about conda-forge by reading their docs.

Python Package Index

To install doepipeline for first time using pip:

pip install doepipeline

If you already installed doepipeline it may be updated using following command:

pip install --upgrade doepipeline

Clone this wiki locally