Skip to main content

Install

Get Digitorn on your machine so you can write, lint, and run app YAML files.

The canonical download UI is digitorn.ai/download (same binaries and version as below). Prefer that page if you want OS detection and one-click buttons.

Installers bundle the desktop client with the local runtime and workers. Published from digitornai/digitorn-desktop (stable latest/download asset names).

PlatformFileDownload
macOS.dmg (~300 MB)digitorn-macos.dmg
Windows.exe (~265 MB)digitorn-windows.exe
Linux.deb (~280 MB)digitorn-linux.deb

Linux note: an .AppImage is also published on the same releases page for other distros.

macOS / Linux (direct)
# macOS
curl -fL -o digitorn-macos.dmg \
https://github.com/digitornai/digitorn-desktop/releases/latest/download/digitorn-macos.dmg

# Linux (.deb)
curl -fL -o digitorn-linux.deb \
https://github.com/digitornai/digitorn-desktop/releases/latest/download/digitorn-linux.deb
sudo apt install ./digitorn-linux.deb # or your distro's equivalent
Windows (direct)
Invoke-WebRequest `
-Uri https://github.com/digitornai/digitorn-desktop/releases/latest/download/digitorn-windows.exe `
-OutFile digitorn-windows.exe
.\digitorn-windows.exe

Open the app, sign in if prompted, then come back here for your first YAML app.

CLI (optional)

Same one-liner as on the download page:

bash
curl -fsSL https://digitorn.ai/cli/install.sh | sh

Then:

bash
digitorn lint path/to/app.yaml
digitorn install path/to/app.yaml
digitorn chat <app_id>

Daemon / headless (optional)

For servers without the desktop UI, same one-liner as on the download page:

bash
curl -fsSL https://digitorn.ai/daemon/install.sh | sh

Your first app

Once Digitorn is running locally:

bash
digitorn lint examples/chat.yaml
digitorn install examples/chat.yaml
digitorn chat chat

Or use Install app in the desktop UI and open a chat there.

Next: the Tutorial and Getting started.

Build from source (contributors)

bash
git clone https://github.com/digitornai/digitorn
cd digitorn
make build
make run