Skip to content

System Installation

Red Station is distributed as a standalone binary for macOS, Linux, and Windows.

Note: Red Station requires Python 3.10+ to be installed on your system for runtime execution of certain tools.

macOS

The recommended installation method for macOS is via Homebrew.

bash
brew tap redstation/tap
brew install pilot-cli

Manual Install

Download the binary directly:

bash
curl -L https://dl.redstation.dev/latest/pilot-darwin-arm64 -o pilot
chmod +x pilot
sudo mv pilot /usr/local/bin/

Linux

We support Ubuntu, Debian, Fedora, and Arch Linux.

One-Line Installer

bash
curl -fsSL https://get.redstation.dev/install.sh | sh

Manual Install

bash
wget https://dl.redstation.dev/latest/pilot-linux-amd64
chmod +x pilot-linux-amd64
sudo mv pilot-linux-amd64 /usr/local/bin/pilot

Windows

PowerShell

Run the following command in PowerShell (Administrator):

powershell
iwr https://get.redstation.dev/install.ps1 -useb | iex

Winget (Coming Soon)

powershell
winget install RedStation.Pilot

Verification

After installation, verify the CLI is accessible:

bash
pilot --version

Expected output: pilot version 1.0.0

Next Steps

Once installed, proceed to First Flight to initialize your first project.

Released under the MIT License.