Skip to content

Installation

Voltig CLI can be installed on any Unix system, macOS (via Homebrew), or built from source.

Install the latest release directly (requires curl, tar):

Terminal window
curl -fsSL https://raw.githubusercontent.com/voltigdev/voltig/main/scripts/install.sh | bash

💡 Tip: This script will download and install the latest Voltig binary for your platform.

Terminal window
brew tap voltigdev/voltig
brew install voltig

🛠️ Note: Homebrew is the recommended way to install on macOS.

Terminal window
git clone <repo-url>
cd voltig-cli
go mod tidy
go build -o voltig .
mv ./voltig $HOME/go/bin/
# Make sure $HOME/go/bin is in your PATH

⚠️ Warning: Building from source requires Go installed on your system.

Adding more support for other platforms is planned for the future.