Skip to content

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:1b

On Windows, download the installer from ollama.com, then run ollama pull llama3.2:1b.

Platform requirements

PlatformMinimumGPU
macOS13 Ventura · Apple Silicon (M1+)Metal
Linuxglibc 2.31+ (Ubuntu 20.04+, Debian 11+)NVIDIA driver 520+ / CUDA 12 (optional)
Windows10 21H2 / 11 (64-bit) · VC++ 2022 redistNVIDIA 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:

GPULinuxWindows
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

bash
tar -xzf dppan-<version>-macos-arm64.tar.gz
cd dppan-<version>-macos-arm64
chmod +x dppan dppan-orchestrator dppan-node
powershell
Expand-Archive dppan-<version>-windows-x86_64.zip .
cd dppan-<version>-windows-x86_64
bat
tar -xf dppan-<version>-windows-x86_64.zip
cd dppan-<version>-windows-x86_64

3. Verify

bash
./dppan --version
bat
dppan.exe --version

You're ready — continue to Usage →.

Free to run · Proprietary