302 AI Studio

Windows

One-Click Installation

In the 302 AI Studio client, go to Vibe mode settings, select "Local" platform, and click the "One-Click Install" button to automatically complete the local environment installation.

One-Click Install Local Environment

Some Windows computers require virtualization to be enabled in BIOS for proper operation. If installation or startup fails, please check if the virtualization option in BIOS settings (usually named Intel VT-x, AMD-V, or SVM Mode) is enabled.


Manual Configuration Steps

If one-click installation fails, you can follow these steps to configure manually.

1. Check / Install WSL

1.1 Check WSL Status

Open a terminal (PowerShell or Windows Terminal) and run:

wsl --status

1.2 Enable WSL

If WSL is not enabled, run the following command with administrator privileges:

wsl --install --no-distribution

Or use the DISM command (also requires administrator privileges):

dism /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart

After executing the above commands, you may need to restart your computer for the changes to take effect.

After restarting, if running the wsl --status command shows the following prompt:

wsl --status error prompt

Please open Settings > System > Optional Features > More Windows Features in sequence,

More Windows Features interface screenshot

Check and enable the following two items:

  • Virtual Machine Platform
  • Windows Subsystem for Linux

2. Install Scoop

Scoop is a command-line package manager for Windows, which will be used to install Podman.

2.1 Set Execution Policy

Open PowerShell and run:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

2.2 Install Scoop

Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression

After installation, you can verify by running scoop --version.


3. Install Podman

3.1 Install via Scoop

scoop install podman

3.2 Verify Installation

podman --version

4. Install podman-compose

4.1 Install

pip install podman-compose

If running pip returns an error (command not found), it means Python/pip is not installed on your system. Please run scoop install python first, then run pip install podman-compose.

4.2 Verify Installation

podman-compose --version

5. Initialize Podman Machine

Create a Podman virtual machine named ai302-machine:

podman machine init --rootful ai302-machine

6. Install Local Environment

After completing all the above steps, return to the 302 AI Studio client. Once installation is complete, the installation status will show "Installed" and the health status will show "Healthy".

Installation Complete Status


7. Start Local Sandbox

Click the "One-Click Start" button to start the local sandbox.

One-Click Start Sandbox

After successful startup, the startup status will show "Started" and the health status will show "Healthy". You can click the "Stop" button at any time to stop the sandbox.

Sandbox Running Status


Important Notes

File Directory Management

  • Modifying the mounted file directory is not currently allowed
  • Clicking on the file directory will automatically open the folder

Auto Initialization

When using local conversations in Vibe mode, the local sandbox environment will be automatically initialized without manual activation.

Log Viewing

The logs in Podman are installation logs only, used for viewing information during the installation process.

Closing Local Sandbox

When the client is closed, the system will automatically shut down Podman.


Notes

  • First startup may take longer to download images and initialize WSL2
  • Ensure your system has sufficient disk space (at least 10GB recommended)
  • It is recommended to regularly update Podman and container images for the latest features
  • Resources are automatically cleaned up when the client is closed
  • WSL2 will consume some system resources; at least 8GB of RAM is recommended

On this page