Documentation Getting Started Install

Install

1 min read·Updated 30 Jul 2026

Arble installs as a desktop app, a CLI, or both. They are two clients of the same local daemon, so the choice is preference rather than capability.

macOS

Homebrew is the supported path and installs the daemon alongside the CLI.

SHELL
brew install arble/tap/arble

Linux

The install script detects your architecture and places the binary in /usr/local/bin.

SHELL
curl -fsSL https://arble.ai/install.sh | sh

Windows

winget, or the standalone .exe from the releases page. WSL2 is supported for development; native Windows is supported for the desktop app.

SHELL
winget install Arble.CLI

Verify the install

arble version prints both the CLI and daemon versions. They need not match exactly, but the CLI warns when the gap is wide enough to matter.

Verifying a release

Every artifact is published with a checksum and a signature. In regulated environments, verify before installing rather than after.

SHELL
curl -fsSLO https://releases.arble.ai/v1.8.2/arble-linux-arm64
curl -fsSLO https://releases.arble.ai/v1.8.2/checksums.txt
sha256sum -c checksums.txt --ignore-missing

Pin an exact patch version in any automated install. latest is for local experiments — it will change under a script that assumes otherwise.