chore: daytona runtime windows README.md and docs (#7396)

Signed-off-by: Ivan Dagelic <dagelic.ivan@gmail.com>
This commit is contained in:
Ivan Dagelic
2025-05-08 14:51:39 +02:00
committed by GitHub
parent 56651bb93c
commit e95c2bf521
2 changed files with 62 additions and 0 deletions

View File

@@ -10,18 +10,32 @@ You can use [Daytona](https://www.daytona.io/) as a runtime provider:
## Step 2: Set Your API Key as an Environment Variable
Run the following command in your terminal, replacing `<your-api-key>` with the actual key you copied:
### Mac/Linux:
```bash
export DAYTONA_API_KEY="<your-api-key>"
```
### Windows PowerShell:
```powershell
$env:DAYTONA_API_KEY="<your-api-key>"
```
This step ensures that OpenHands can authenticate with the Daytona platform when it runs.
## Step 3: Run OpenHands Locally Using Docker
To start the latest version of OpenHands on your machine, execute the following command in your terminal:
### Mac/Linux:
```bash
bash -i <(curl -sL https://get.daytona.io/openhands)
```
### Windows:
```powershell
powershell -Command "irm https://get.daytona.io/openhands-windows | iex"
```
### What This Command Does:
- Downloads the latest OpenHands release script.
- Runs the script in an interactive Bash session.