Installation¶
Run the following to install:
pip install mldoe
Development¶
To install mldoe, along with the tools you need to develop and run tests, run the following in your virtualenv:
pip install -e .[dev]
To create and activate a virtualenv in Linux, we recommend using the venv package in python with the following command:
python3 -m venv myenv
source myenv/bin/activate
where myenv is the name of your virtual environment.