Install
Every way to install Cento — terminal, PowerShell, or a coding agent.
Every install path runs the same engine: the cento CLI and its
cento host install command. Pick the entry point that fits how you work.
Terminal (macOS, Linux, WSL)
curl -fsSL https://get.cento.app | shThe script detects your platform, downloads and verifies the signed cento
binary, then hands off to cento host install. It never mutates your system
itself — all setup logic lives in the CLI.
PowerShell (Windows)
irm https://get.cento.app/cli/install.ps1 | iexSame flow as the curl script. On Windows, Cento runs its workspaces inside WSL; the installer guides you through WSL setup if it's missing.
Coding agent
Paste this prompt into your coding agent (Cursor, Codex, …):
Set up Cento on this machine by following https://cento.sh/install/agent.md. When Cento asks for pairing, show me the approval link and wait. Stop only when
cento doctor --jsonexits 0.
The agent installs through the same CLI, pauses when your approval is needed, and verifies the result mechanically.
What cento host install does
- Places the Cento daemon (the background service that runs workspaces).
- Registers it to start automatically on login (systemd, launchd, or a Windows logon task).
- Runs
cento loginif the machine isn't paired yet — see pairing. - Starts the daemon and runs the same checks as
cento doctor.
It's idempotent: re-running it converges your machine to a working state rather than breaking an existing install.