Installation
Prerequisites
Episimmer requires python 3.7+.
Install using pip
If you are using Linux or macOS you can install episimmer from PyPI with pip:
pip install episimmer
Install from source
Or you can install from source
First clone this repository:
git clone https://github.com/healthbadge/episimmer.git
Then, to install the package, run the following command inside the episimmer directory:
pip install -e .
If you do not have pip you can instead use:
python setup.py install
If you do not have root access, you should add the --user option to the above lines.
Documentation
To build the documentation:
Install episimmer with command -
pip install -e .[test]
Note: Some shells such as Zsh require quotation marks around brackets, i.e. pip install -e ‘.[test]’
Generate the documentation file via:
cd docs make html
The documentation is now available to view by opening docs/_build/html/index.html.