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:
bash
# 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. For CUDA, the GPU must be Turing or newer (GTX 1650, RTX 20xx+); GTX 10xx and older are not supported.
1. Download
Get the build for your platform from inclavate.io/downloads.
2. Extract
bash
# macOS / Linux
tar -xzf dppan-<version>-macos-arm64.tar.gz
cd dppan-<version>-macos-arm64
chmod +x dppan dppan-orchestrator dppan-nodepowershell
# Windows (PowerShell)
Expand-Archive dppan-<version>-windows-x86_64.zip .
cd dppan-<version>-windows-x86_643. Verify
bash
./dppan --versionYou're ready — continue to Usage →.