Installation#
User Installation#
As a user, install from pypi:
$ pip install datapipe-testbench
Or conda-forge:
$ mamba install -c conda-forge datapipe-testbench
Developer Setup#
As a developer, clone the repository, create a virtual environment and then install the package in development mode:
$ git clone git@gitlab.cta-observatory.org:kosack/datapipe-testbench.git
$ cd datapipe-testbench
$ python -m venv venv
$ source venv/bin/activate
$ pip install -e .[test,doc,dev]
The same also works with conda, create a conda env instead of a venv above.