Skip to main content

Installation

Install the Sypho CLI on macOS, Linux, or Windows.

Quick Install

macOS / Linux

curl -sSL https://install.sypho.dev | sh

This script:

  1. Detects your OS and architecture
  2. Downloads the latest release
  3. Installs to /usr/local/bin/sypho
  4. Makes it executable

Verify Installation

sypho --version

Manual Installation

1. Download Binary

Visit GitHub Releases and download for your platform:

macOS:

  • Intel: sypho-darwin-amd64
  • Apple Silicon: sypho-darwin-arm64

Linux:

  • sypho-linux-amd64

Windows:

  • sypho-windows-amd64.exe

2. Install

macOS/Linux:

chmod +x sypho-*
sudo mv sypho-* /usr/local/bin/sypho

Windows:

  • Rename to sypho.exe
  • Add to PATH

Build from Source

Prerequisites

Steps

git clone https://github.com/sypho/sypho-cli
cd sypho-cli
cargo build --release
./target/release/sypho --version

Next Steps

After installation, authenticate:

sypho login

See login command documentation.