Installation
Prerequisites
- Python 3.10 to 3.13 — check with
python --version - pip (included with Python)
- A modern browser (Chrome, Firefox, Safari, Edge)
Pixano is tested on Linux and macOS. It should work on Windows but is not officially tested.
Install with pip
We recommend installing Pixano in a virtual environment to keep dependencies isolated:
python -m venv .venvsource .venv/bin/activate # Windows: .venv\Scripts\activatepip install pixanoVerify the installation:
pip show pixanoYou should see output including Name: pixano and Version: 0.7.x.
You can also check that the CLI is available:
pixano --helpDocker
Pixano is available on Docker Hub for official releases. Pull the
stable tag to get the latest released version:
docker pull pixano/pixano:stableIf you need to pin a specific release, use the corresponding version tag instead of stable.
Run the container with a mounted library directory:
docker run -d \ --name pixano \ -p 7492:7492 \ -v ./my_library:/library \ pixano/pixano:stableOpen http://localhost:7492 in your browser.
In this example, ./my_library is the directory on your machine where Pixano stores its library. Inside the
container, Pixano always uses /library. Reusing the same mounted directory lets you keep your data across
container restarts or upgrades.
Troubleshooting
| Problem | Solution |
|---|---|
pip install pixano fails with build errors | Make sure you have Python 3.10+ and an up-to-date pip: pip install --upgrade pip |
pixano command not found after install | Activate your virtual environment: source .venv/bin/activate |
| Port 7492 already in use | Use --port 8000 or stop the other process |
| Docker container exits immediately | Check logs with docker logs pixano, then verify that the mounted host directory exists and is writable |
Next steps
You’re ready to go. Head to the Quickstart to import your first dataset and launch the app.