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

# Installing SDKs & CLI

Novita Agent Sandbox provides official stable SDKs (currently supporting Python and JavaScript & TypeScript) as well as accompanying command-line tools to help you integrate sandbox capabilities into your business. You can install the Novita SDK for application code and the CLI for terminal-based sandbox operations.

## Install SDK

You can install the Novita SDK by executing the following commands.

<CodeGroup>
  ```bash JavaScript & TypeScript icon="terminal" theme={"system"}
  npm i novita-sandbox
  ```

  ```bash Python icon="terminal" theme={"system"}
  pip install novita-sandbox
  ```
</CodeGroup>

## Install CLI

The Novita Sandbox CLI helps you manage sandboxes, run commands, build templates, and perform common development tasks directly from the terminal.

<CodeGroup>
  ```bash Bash icon="terminal" theme={"system"}
  npm i -g novita-sandbox-cli
  ```
</CodeGroup>
