From 9ca4075e6bd03100d310336b69715347fa6ceb9f Mon Sep 17 00:00:00 2001 From: Harmeet Singh Date: Fri, 30 Jan 2026 14:15:07 +0530 Subject: [PATCH] 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.).