-
Notifications
You must be signed in to change notification settings - Fork 2
Installation
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.
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.
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