Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md with windows instructions #210

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions computer-use-demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Please use [this form](https://forms.gle/BT1hpBrqDPDUrCqo7) to provide feedback
> [!TIP]
> You can find your API key in the [Anthropic Console](https://console.anthropic.com/).

#### Mac / Linux
```bash
export ANTHROPIC_API_KEY=%your_api_key%
docker run \
Expand All @@ -46,6 +47,13 @@ docker run \
-it ghcr.io/anthropics/anthropic-quickstarts:computer-use-demo-latest
```

#### Windows
Open your cmd in administrator mode then paste the following:
```
set ANTHROPIC_API_KEY=[paste your Anthropic API key here (remove this message along with the square brackets)]
docker run -e ANTHROPIC_API_KEY=%ANTHROPIC_API_KEY% -v %HOMEDRIVE%%HOMEPATH%\.anthropic:/home/computeruse/.anthropic -p 5900:5900 -p 8501:8501 -p 6080:6080 -p 8080:8080 -it ghcr.io/anthropics/anthropic-quickstarts:computer-use-demo-latest
```

Once the container is running, see the [Accessing the demo app](#accessing-the-demo-app) section below for instructions on how to connect to the interface.

### Bedrock
Expand Down