Installation Tutorial¶
This tutorial covers
Installation using conda
Installation using pip
Installation from source
Conda¶
We strongly recommend creating a fresh environment.
conda create -n try-databroker
conda activate try-databroker
Install Databroker from the nsls2forge
conda channel maintained by NSLS-II.
conda install -c nsls2forge databroker
It is also available from the conda-forge
channel.
Pip¶
We strongly recommend creating a fresh environment.
python3 -m venv try-databroker
source try-databroker/bin/activate
Install Databroker from PyPI.
python3 -m pip install databroker
Source¶
To install an editable installation for local development:
git clone https://github.com/bluesky/databroker
cd databroker
pip install -e .