flexx logoflexx docs

Install flexx CLI

Install the flexx CLI on macOS, Linux, or Windows. One command to download the binary and add it to your PATH. Supports Intel, Apple Silicon, and ARM64.

macOS & Linux

curl -fsSL https://cli.flexx.dev/install.sh | sh

This installs the flexx binary to ~/.flexx/bin and adds it to your PATH.

Pinned version

FLEXX_VERSION=0.1.0 curl -fsSL https://cli.flexx.dev/install.sh | sh

Windows

irm https://cli.flexx.dev/install.ps1 | iex

Installs to %USERPROFILE%\.flexx\bin and adds it to your user PATH.

Verify installation

flexx version

Manual download

Download binaries directly from https://cli.flexx.dev/latest/:

PlatformBinary
Linux (x86_64)flexx-linux-amd64
Linux (ARM64)flexx-linux-arm64
macOS (Intel)flexx-darwin-amd64
macOS (Apple Silicon)flexx-darwin-arm64
Windows (x86_64)flexx-windows-amd64.exe
Windows (ARM64)flexx-windows-arm64.exe

SHA256 checksums are available at https://cli.flexx.dev/latest/checksums.txt.

Update to latest version

flexx update

This downloads the latest binary from cli.flexx.dev and replaces the current one in-place.

Next step

After installation:

flexx setup      # authenticate + register (does not connect)
flexx connect    # start the daemon, or: flexx service install

See the setup guide for details.

On this page