Skip to main content

Requirements

Omium requires Python 3.9 or higher. We recommend using a virtual environment.
  • Python 3.9+
  • pip (Python package manager)

Install via pip

pip install omium

Verify Installation

omium --version
Expected output:
Omium SDK v0.3.0
If you get a “command not found” error, ensure your Python scripts directory is in your PATH.

Using a virtual environment prevents conflicts with other Python packages.
# Create virtual environment
python -m venv omium-env

# Activate it
# Windows:
omium-env\Scripts\activate
# macOS/Linux:
source omium-env/bin/activate

# Install Omium
pip install omium

Next Steps