Skip to content

Commit

Permalink
Add instructions for macOS ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
belindamo committed Dec 20, 2024
1 parent c4b5d1e commit bd13e3c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions computer-use-demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,3 +180,11 @@ docker run \
```

The docker run command above mounts the repo inside the docker image, such that you can edit files from the host. Streamlit is already configured with auto reloading.

### Developing on macOS ARM

If you are running on an ARM-based Mac, you will need to change the base image in the Dockerfile to `ubuntu:22.04` or another ARM-compatible base image. This can be done by changing the first line of the Dockerfile to:

```Dockerfile
FROM --platform=linux/amd64 ubuntu:22.04
```

0 comments on commit bd13e3c

Please sign in to comment.