ubuntu24.04纯命令行安装openclaw
摘要:本文介绍在Ubuntu系统上安装纯命令行版OpenClaw的步骤。主要包括系统更新、Node.js安装、Git配置等操作。关键命令包括apt更新、nodejs安装、全局安装openclaw以及解决git拉取代码时的权限报错问题。对于ssh认证失败的情况,提供了将ssh协议替换为https协议的解决方案。整个过程简洁高效,适合命令行环境下的快速部署。
·
openclaw安装纯命令行版
配置项参考ubuntu24.04安装 openClaw+kimi2.5+飞书 详细教程
sudo apt update
sudo apt upgrade
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt install -y nodejs
sudo apt install git
node -v
npm -v
git -v
npm install -g openclaw@latest
openclaw onboard --install-daemon
git拉代码报错
npm ERR git@github.com: Permission denied (publickey)
git config --global url.“https://”.insteadOf ssh://git
更多推荐




所有评论(0)