Installation#

You will need Python 3.10 or later. You can check your version of Python by typing into a terminal:

python3 --version

It is recommended that you work in an isolated “virtual environment”, so this installation will not interfere with any existing Python software:

python3 -m venv ./venv
source ./venv/bin/activate

You can now use pip to install the library and its dependencies:

python3 -m pip install bluesky-tiled-plugins

Create a conda environment.

conda create -n try-tiled
conda activate try-tiled

Install the package.

conda install -c conda-forge bluesky-tiled-plugins

Create a project.

uv init

Add bluesky-tiled-plugins to it.

uv add bluesky-tiled-plugins

Create a workspace.

pixi init

Add bluesky-tiled-plugins to it.

pixi add bluesky-tiled-plugins