Last edited by 799959745 In 6/3/2026 15:21 Editor
OpenClaw (Cloud Compute)
Environment Requirements- Platform: Linux RISC-V 64
- Node.js: >= 22.12.0
- Package manager: pnpm 10.23.0
- Hardware: SpacemiT K1 or K3 development board
Platform Support| Platform & OS | Supported | | K1 Buildroot | ❌ No | | K1 OpenHarmony | ❌ No | | K1 Bianbu LXQT/GNOME | ✅ Yes | | K3 Buildroot | ❌ No | | K3 OpenHarmony | ❌ No | | K3 Bianbu LXQT/GNOME | ✅ Yes | OpenClaw Installation for General Users
1. Install nvm for Node.js Version Management
- wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
Copy the code
If nvm cannot be found, run the following commands: - export NVM_DIR="$HOME/.nvm"
- [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
- [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
- source ~/.bashrc
Copy the code 2. Download the npm Installation Package (Optional)If you plan to install from npmjs.com, you do not need to download the installation package separately. 3. Install Node.js 22For the K3 development board: - NVM_NODEJS_ORG_MIRROR=https://archive.spacemit.com/nodejs/k3 nvm install 22
Copy the codeThen run: 4. Install OpenClawTwo OpenClaw Installation MethodsTo install OpenClaw from the npm registry, run: - npm i -g --legacy-peer-deps @dengxifeng/openclaw --force --registry=https://registry.npmjs.org/
Copy the codeTo install it from the downloaded npm package, run: - npm install -g --legacy-peer-deps ./openclaw-2026.3.8.1.tgz
Copy the code
5. Configure OpenClawRun the following command to start the configuration process: After installation, proceed with the OpenClaw configuration. The following example uses the Kimi model. After the configuration is complete, the terminal outputs a local access URL containing a token, for example: - http://127.0.0.1:18789/#token=7229793a7a0a32ff206ab91230ac991221c84301dc3447e6
Copy the codeOpen this link in a browser to access the OpenClaw Web UI. The token is the value shown in the URL printed by the console after the configuration process completes. Build, Install, and Redevelop OpenClaw for Developers
Code RepositoryGuidesOfficial References
|