To build a conda package:
make conda-buildTo install build package in a new environment:
conda create -n c2dv.0001 local::c2dataviewer -c epics -c conda-forgeTo run app from new environment:
source activate c2dv.0001
c2dv --app scopeTo install pip dependencies:
make pip-dependenciesTo build a pip package:
make pip-buildTo run the unit tests run:
make pip-testTo install package locally
python3 -m venv c2dv.0001
source c2dv.0001/bin/activate
pip install dist/c2dataviewer-*.tar.gz