Skip to main content

Prerequisites

  • Python 3.9+
  • pip (or uv / pipx if you prefer)
If you plan to use LangGraph or CrewAI, install those libraries in your app as usual—Omium does not replace them.

Install

Omium ships as a Python package and includes the omium CLI.
pip install omium

Verify

omium --version
You should see a version string like:
Omium SDK v0.3.0
If you see “command not found”, your Python scripts directory isn’t on PATH. A quick workaround is:
python -m omium --version

Use a venv to avoid dependency conflicts.
python -m venv .venv
source .venv/bin/activate
pip install omium

Next steps

Configure

Create an API key and configure the CLI / SDK.

Quickstart

Run your first traced workflow in minutes.