Installation ============ python ------ To install package in your python distribution, #. check that you are using your desired python version:: which python #. install package with setup tools:: python setup.py install conda ----- To create a virtual environment and install the package with conda, #. check that you are using the desired conda version:: which conda #. execute:: conda env create -f environment.yml #. install package with setup tools:: python setup.py install development ----------- Instead of installing the package, set it up in develop mode so that changes in the source files are seen without having to reinstall the package:: python setup.py develop docs ---- Use the ``Makefile`` in the ``docs`` directory to create documentations in the format of choice. For example:: make html