Skip to content

Installation

We recommend installing Pixano in a virtual environment:

python -m venv .venv
source .venv/bin/activate   # Windows: .venv\Scripts\activate
pip install pixano

Docker

Pixano is available on Docker Hub. Pull the stable version (latest release):

docker pull pixano/pixano:stable

See Launching the app for how to run the container.

From source

Clone the repository and install with uv:

git clone https://github.com/pixano/pixano.git
cd pixano
uv sync

When running from source, prefix every command with uv run (e.g. uv run pixano server run ./my_data).