Install DPW
The Daimyo Programmers Workshop ships in three modes that share a single engine: Desktop, Web, and Hosted. Pick whichever fits how you work — the source code behaves identically across all three.
Desktop
The recommended default. Native build, full filesystem access, runs the algebra locally.
# macOS
brew install daitai-org/tap/dpw
# Linux (Debian / Ubuntu / Arch)
curl -sSL https://get.daitai.org/dpw | bash
# Windows
iwr -useb https://get.daitai.org/dpw.ps1 | iex
After install:
dpw doctor # verifies install + signs your trust store
dpw new hello # scaffolds a workspace
cd hello && dpw run # opens the editor
Web
Zero-install editor at dpw.daitai.org. Useful for code review, onboarding, or evaluating daitai before installing the desktop build. State is ephemeral by default.
Hosted
A team workspace that keeps everyone on the same algebra version, the same trust store, and the same compliance pipeline. Contact ops@daitai.org for an invite.
Verify the install
dpw doctor
A green dpw doctor means: the binary is signed, your trust store has at least one verified key, your algebra version matches the workspace, and the CGF toolchain is reachable.
Reading next
- Getting started — your first workspace.
- CGF in 5 minutes — sign your first compliance bundle from inside DPW.