Installation
Inclavate ships as a self-contained bundle — the dppan CLI, the orchestrator, and a node binary. No installer: download, extract, run.
Prerequisites
Ollama provides the model weights (GGUF). Install it and pull a model:
# macOS / Linux
curl -fsSL https://ollama.com/install.sh | sh
ollama pull llama3.2:1bOn Windows, download the installer from ollama.com, then run ollama pull llama3.2:1b.
Platform requirements
| Platform | Minimum | GPU |
|---|---|---|
| macOS | 13 Ventura · Apple Silicon (M1+) | Metal |
| Linux | glibc 2.31+ (Ubuntu 20.04+, Debian 11+) | NVIDIA driver 520+ / CUDA 12 (optional) |
| Windows | 10 21H2 / 11 (64-bit) · VC++ 2022 redist | NVIDIA driver 576.02+ / CUDA 12 (optional) |
GPU is optional — CPU fallback works everywhere.
Supported GPUs
The prebuilt CUDA binaries include kernels for a fixed set of NVIDIA architectures:
| GPU | Linux | Windows |
|---|---|---|
| GTX 16xx · RTX 20 / 30 / 40 series | ✅ native | ✅ native |
| H100 / H200 (Hopper) | ✅ native | ⚡ JIT¹ |
| RTX 50xx / Blackwell | ⚡ JIT¹ | ⚡ JIT¹ |
| GTX 10xx (Pascal) · A100 / A30 | ❌ not supported² | ❌ not supported² |
¹ Runs, but the driver compiles the kernels on the first launch (a few extra seconds), then caches them for later runs. ² Build from source with the matching architecture, e.g. -DCMAKE_CUDA_ARCHITECTURES="61" (Pascal) or "80" (A100).
On macOS, Metal acceleration is automatic on Apple Silicon (M1+); Intel Macs run CPU-only.
1. Download
Get the build for your platform from inclavate.io/downloads.
2. Extract
tar -xzf dppan-<version>-macos-arm64.tar.gz
cd dppan-<version>-macos-arm64
chmod +x dppan dppan-orchestrator dppan-nodeExpand-Archive dppan-<version>-windows-x86_64.zip .
cd dppan-<version>-windows-x86_64tar -xf dppan-<version>-windows-x86_64.zip
cd dppan-<version>-windows-x86_643. Verify
./dppan --versiondppan.exe --versionYou're ready — continue to Usage →.