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

# CLI Reference

> Compiling and managing predictors from the command line.

The Muna CLI is the primary tool for compiling Python functions and managing your predictors.

## Installation

Install the Muna CLI using pip:

```bash icon="terminal" theme={null}
# Run this in Terminal
$ pip install --upgrade muna
```

<Tip>
  The CLI is bundled with the Muna Python SDK, so if you already have the SDK installed, you're ready to go.
</Tip>

## Commands

<CardGroup cols={3}>
  <Card title="muna transpile" icon="code" href="/cli/transpile">
    Transpile Python to C++ source code.
  </Card>

  <Card title="muna compile" icon="hammer" href="/cli/compile">
    Compile a Python function for deployment.
  </Card>

  <Card title="muna predict" icon="bolt" href="/cli/predict">
    Invoke a compiled Python function.
  </Card>
</CardGroup>
