Skip to content

Installation

The easiest way to install brdz is using our installation script:

Terminal window
curl -fsSL https://brdz-releases-public.s3.eu-central-1.amazonaws.com/install.sh | bash

This script will:

  • Detect your operating system and architecture
  • Download the appropriate binary
  • Install it to /usr/local/bin/brdz
  • Make it executable

After installation, verify that brdz is working correctly:

Terminal window
brdz --help

You should see the brdz help output with available commands.

If you prefer to install manually or the script doesn’t work for your system:

  1. Download the latest binary for your architecture:
Terminal window
# macOS (Apple Silicon)
curl -L https://brdz-releases-public.s3.eu-central-1.amazonaws.com/latest/brdz-darwin-arm64 -o brdz
# macOS (Intel)
curl -L https://brdz-releases-public.s3.eu-central-1.amazonaws.com/latest/brdz-darwin-amd64 -o brdz
# Linux (amd64)
curl -L https://brdz-releases-public.s3.eu-central-1.amazonaws.com/latest/brdz-linux-amd64 -o brdz
# Linux (arm64)
curl -L https://brdz-releases-public.s3.eu-central-1.amazonaws.com/latest/brdz-linux-arm64 -o brdz
  1. Install the binary:
Terminal window
# Make it executable
chmod +x brdz
# Move to a directory in your PATH
sudo mv brdz /usr/local/bin/
  1. Or use the built-in installer if you’ve already downloaded the binary:
Terminal window
./brdz install

We recommend using Windows Subsystem for Linux (WSL) and following the Linux installation instructions above.

Download the Windows binary:

Terminal window
# Download using PowerShell
Invoke-WebRequest -Uri "https://brdz-releases-public.s3.eu-central-1.amazonaws.com/latest/brdz-windows-amd64.exe" -OutFile "brdz.exe"
# Add to your PATH or run directly

To update to the latest version, you can use the built-in update command:

Terminal window
brdz update

Or re-run the installation script:

Terminal window
curl -fsSL https://brdz-releases-public.s3.eu-central-1.amazonaws.com/install.sh | bash

Now that you have brdz installed, continue to the Quick Start Guide to create your first deployment.