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

# インストール

この機能は現在 **beta** です。Novita Sandbox Python SDK と CLI ツールの両方の beta バージョンをインストールする必要があります。

***

## pip で Python SDK をインストールする

最新の beta バージョンをインストールするには、`--pre` フラグを使用します。

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

***

## Node.js CLI をインストールする

### オプション 1: npx で実行する（推奨）

`npm` を使用してプロジェクトディレクトリに beta CLI をローカルインストールし、`npx` で実行します。これにより、beta バージョンでグローバル環境を汚染せずに済みます。

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

### オプション 2: グローバルインストール

CLI を頻繁に使用する場合は、グローバルにインストールできます。

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

インストール後、コマンドを直接使用できます。

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