Skip to content

Installation

Python Package

# Core engine only
pip install ontic-engine

# With domain packs
pip install ontic-engine[cfd]
pip install ontic-engine[quantum]
pip install ontic-engine[all]

Development Setup

git clone https://github.com/tigantic/physics-os.git
cd physics-os

# Install with dev dependencies
pip install -e ".[dev,docs]"

# Install Rust workspace
cargo build --workspace

# Run quality gates
make check

Rust Crates

The Rust performance substrate builds as a Cargo workspace:

cargo build --workspace --release
cargo test --workspace
cargo clippy --workspace

Verify Installation

import ontic
print(ontic.__version__)