Downloads

Download ACT for your platform

Updated Feb 14, 2026 Edit this page

Downloads

Download the latest version of ACT for your platform.

Server Binary (Linux)

For headless server installations, use the one-line installer:

curl -fsSL https://cdn.drmhse.com/install.sh | bash

Or pin to a specific version:

curl -fsSL https://cdn.drmhse.com/install.sh | bash -s -- --version v0.1.0

Direct Downloads

PlatformArchitectureDownload
Linuxx86_64 (AMD/Intel)act-linux-x86_64
Linuxaarch64 (ARM64)act-linux-aarch64

Checksums: SHA256SUMS


Desktop App

The ACT Desktop App provides a native experience with the embedded API server as a sidecar.

macOS

ArchitectureDownload
Apple Silicon (M1/M2/M3)ACT.dmg
IntelACT.dmg

Windows

ArchitectureDownload
x64 (MSI)ACT.msi
x64 (EXE Installer)ACT-setup.exe

Linux

FormatDownload
Debian/Ubuntu (.deb)ACT.deb
AppImage (Universal)ACT.AppImage

Version Pinning

To download a specific version, replace latest with the version tag:

# Server binary
curl -L https://cdn.drmhse.com/v0.1.0/act-linux-x86_64 -o act

# Desktop app
# https://cdn.drmhse.com/desktop/v0.1.0/ACT-aarch64-apple-darwin.dmg

Verifying Downloads

All downloads include SHA256 checksums for verification:

# Download the binary and checksum
curl -L https://cdn.drmhse.com/latest/act-linux-x86_64 -o act
curl -L https://cdn.drmhse.com/latest/SHA256SUMS -o SHA256SUMS

# Verify
grep act-linux-x86_64 SHA256SUMS | sha256sum -c -

Build from Source

See the Getting Started guide for building from source.

Quick Build

git clone https://github.com/drmhse/act2.git
cd act2

# Build everything
npm run build:backend       # Server binaries
npm run build:desktop       # Desktop app (current platform)

# Or build for all macOS targets (from M1/M2/M3)
npm run build:desktop:all-macos

Release Notes

See GitHub Releases for detailed release notes and changelogs.