> ## 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.

# Installation

Diese Funktion befindet sich derzeit in der **Beta**. Du musst die Beta-Versionen sowohl des Novita Sandbox Python SDK als auch des CLI-Tools installieren:

***

## Python SDK mit pip installieren

Verwende das Flag `--pre`, um die neueste Beta-Version zu installieren:

```bash theme={"system"}
pip install novita-sandbox==1.2.5b1
```

***

## Node.js CLI installieren

### Option 1: Mit npx ausführen (empfohlen)

Installiere die Beta-CLI lokal in deinem Projektverzeichnis mit `npm` und führe sie anschließend mit `npx` aus. Dadurch vermeidest du, deine globale Umgebung mit der Beta-Version zu verunreinigen.

```bash theme={"system"}
# Install the latest beta version CLI
npm install novita-sandbox-cli@beta

# First, complete authentication
npx novita-sandbox-cli auth login

# Run agent configure command to configure your Agent
npx novita-sandbox-cli agent configure
```

### Option 2: Globale Installation

Wenn du die CLI häufig verwendest, kannst du sie global installieren:

```bash theme={"system"}
# Install the latest beta version
npm install -g novita-sandbox-cli@beta
```

Nach der Installation kannst du den Befehl direkt verwenden:

```bash theme={"system"}
novita-sandbox-cli agent configure
```
