From 9edc40ff7b25fb2a827ba03d0b4ea607067ca1af Mon Sep 17 00:00:00 2001 From: Harmeet Singh Date: Fri, 30 Jan 2026 12:58:07 +0530 Subject: [PATCH 1/2] Add VM display instructions and setup assistant steps Added instructions to run VM with display and details for the setup assistant. --- docs/platforms/macos-vm.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/platforms/macos-vm.md b/docs/platforms/macos-vm.md index 258f2e919..1c0bb9883 100644 --- a/docs/platforms/macos-vm.md +++ b/docs/platforms/macos-vm.md @@ -94,7 +94,10 @@ Note: The download can take a while depending on your connection. --- ## 3) Complete Setup Assistant - +Run VM with display (VNC window opens) +```bash +lume run openclaw +``` In the VNC window: 1. Select language and region 2. Skip Apple ID (or sign in if you want iMessage later) From 9ca4075e6bd03100d310336b69715347fa6ceb9f Mon Sep 17 00:00:00 2001 From: Harmeet Singh Date: Fri, 30 Jan 2026 14:15:07 +0530 Subject: [PATCH 2/2] Modify SSH command and update Openclaw installation Updated SSH command to include TTY allocation and changed installation method for Openclaw. --- docs/platforms/macos-vm.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/platforms/macos-vm.md b/docs/platforms/macos-vm.md index 1c0bb9883..541d1f625 100644 --- a/docs/platforms/macos-vm.md +++ b/docs/platforms/macos-vm.md @@ -123,9 +123,10 @@ Look for the IP address (usually `192.168.64.x`). ## 5) SSH into the VM ```bash -ssh youruser@192.168.64.X +ssh -t youruser@192.168.64.X ``` +`-t` TTY allocation, which later required for openclaw installation. Replace `youruser` with the account you created, and the IP with your VM's IP. --- @@ -135,8 +136,7 @@ Replace `youruser` with the account you created, and the IP with your VM's IP. Inside the VM: ```bash -npm install -g openclaw@latest -openclaw onboard --install-daemon +curl -fsSL https://openclaw.ai/install.sh | bash ``` Follow the onboarding prompts to set up your model provider (Anthropic, OpenAI, etc.).