Requirements
Omium requires Python 3.9 or higher. We recommend using a virtual environment.
- Python 3.9+
- pip (Python package manager)
Install via pip
Verify Installation
Expected output:
If you get a “command not found” error, ensure your Python scripts directory is in your PATH.
Virtual Environment (Recommended)
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