🚀 Install Polos Server

Get started with Polos in seconds

Quick Install

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

Or with wget:

wget -qO- https://install.polos.dev/install.sh | bash

After Installation

Start Polos Server:

polos-server start

And that's it - you're all set! Follow the docs to set up your first agent

Advanced

Use this if you want advanced actions like installing a specific version or doing a manual installation.

Install Specific Version

curl -fsSL https://install.polos.dev/install.sh | bash -s 0.1.10

What This Does

Detects your platform (macOS/Linux, x86_64/ARM64)
Downloads the appropriate binary from GitHub releases
Verifies the checksum for security
Installs to /usr/local/bin or ~/.local/bin
⚠️ Security Note Always review scripts before piping to bash. You can view the installer script at: GitHub

Manual Installation

If you prefer to install manually:

  1. Visit GitHub Releases
  2. Download the binary for your platform
  3. Make it executable: chmod +x polos-server-*
  4. Move to your PATH: sudo mv polos-server-* /usr/local/bin/polos-server

For more information, visit the GitHub repository