# CLI Reference Source: https://docs.muna.ai/cli/introduction 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 ``` The CLI is bundled with the Muna Python SDK, so if you already have the SDK installed, you're ready to go. ## Commands Transpile Python to C++ source code. Compile a Python function for deployment. Invoke a compiled Python function. # muna transpile Source: https://docs.muna.ai/cli/transpile Transpile a Python function to C++ source code. The `transpile` command converts a Python function into C++ source code. You can then compile the generated source code into a library or executable: