Documentation Index
Fetch the complete documentation index at: https://docs.cloudshipai.com/llms.txt
Use this file to discover all available pages before exploring further.
Quick Install
The fastest way to install Station is using our install script:
curl -fsSL https://raw.githubusercontent.com/cloudshipai/station/main/install.sh | bash
This script:
- Detects your platform (Linux/macOS/Windows) and architecture (amd64/arm64)
- Downloads the latest release from GitHub
- Installs the
stn binary to ~/.local/bin/ or /usr/local/bin/
- Adds the binary to your PATH if needed
Manual Installation
From GitHub Releases
Download the appropriate binary for your platform from GitHub Releases:
macOS (Apple Silicon)
macOS (Intel)
Linux (x64)
Linux (ARM64)
# Download
curl -LO https://github.com/cloudshipai/station/releases/latest/download/station_darwin_arm64.tar.gz
# Extract
tar -xzf station_darwin_arm64.tar.gz
# Install
mv stn ~/.local/bin/
chmod +x ~/.local/bin/stn
# Download
curl -LO https://github.com/cloudshipai/station/releases/latest/download/station_darwin_amd64.tar.gz
# Extract
tar -xzf station_darwin_amd64.tar.gz
# Install
mv stn ~/.local/bin/
chmod +x ~/.local/bin/stn
# Download
curl -LO https://github.com/cloudshipai/station/releases/latest/download/station_linux_amd64.tar.gz
# Extract
tar -xzf station_linux_amd64.tar.gz
# Install
mv stn ~/.local/bin/
chmod +x ~/.local/bin/stn
# Download
curl -LO https://github.com/cloudshipai/station/releases/latest/download/station_linux_arm64.tar.gz
# Extract
tar -xzf station_linux_arm64.tar.gz
# Install
mv stn ~/.local/bin/
chmod +x ~/.local/bin/stn
From Source
Build Station from source using Go 1.21+:
# Clone the repository
git clone https://github.com/cloudshipai/station.git
cd station
# Build with UI embedded
make build-with-ui
# Install to PATH
mv bin/stn ~/.local/bin/
Verify Installation
Check that Station is installed correctly:
You should see output like:
PATH Configuration
If stn is not found after installation, add ~/.local/bin to your PATH:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
fish_add_path ~/.local/bin
System Requirements
| Requirement | Minimum | Recommended |
|---|
| OS | Linux, macOS, Windows (WSL) | Linux, macOS |
| Architecture | x64, ARM64 | ARM64 (Apple Silicon) |
| RAM | 512MB | 2GB |
| Disk | 100MB | 500MB |
| Docker | Optional | Required for stn up |
Upgrading
To upgrade to the latest version:
# Re-run the install script
curl -fsSL https://raw.githubusercontent.com/cloudshipai/station/main/install.sh | bash
# Or if using stn up
stn up --upgrade
Uninstalling
To remove Station:
# Remove binary
rm ~/.local/bin/stn
# Remove configuration (optional)
rm -rf ~/.config/station/
Next Steps
Configuration
Configure Station with your AI provider