> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agno.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Where does the agno command come from?

> pip install agno 2.7+ puts the agno and agnoctl commands on your PATH; both run the same CLI.

Installing `agno` 2.7 or later gives you the Agno CLI alongside the SDK:

```bash theme={null}
pip install -U agno
agno --help
```

Two commands land on your PATH: `agno` and `agnoctl`. Both run the same CLI. The `agnoctl` package is also published standalone with `typer`, `rich`, and `httpx` as dependencies, so you can run it on machines without the SDK:

```bash theme={null}
uvx agnoctl connect
```

The CLI scaffolds AgentOS projects (`agno create`), runs them with Docker Compose (`agno up`), connects coding agents over MCP (`agno connect`), and manages service-account tokens (`agno tokens`).

## Next Steps

* [Agno CLI overview](/agent-os/cli/overview)
* [agnoctl reference](/reference/cli/agnoctl)
