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

# Installatie

Deze functie is momenteel in **beta**. Je moet de bètaversies van zowel de Novita Sandbox Python SDK als de CLI-tool installeren:

***

## Python SDK installeren met pip

Gebruik de `--pre`-vlag om de nieuwste bètaversie te installeren:

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

***

## Node.js CLI installeren

### Optie 1: Uitvoeren met npx (aanbevolen)

Installeer de bèta-CLI lokaal in je projectdirectory met `npm` en voer deze vervolgens uit met `npx`. Zo voorkom je dat je globale omgeving wordt vervuild met de bètaversie.

```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
```

### Optie 2: Globale installatie

Als je de CLI vaak gebruikt, kun je deze globaal installeren:

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

Na de installatie kun je de opdracht direct gebruiken:

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