260310-openclaw部署和使用
Created At :
必需环境
安装NodeJs
配置npm 或者 pnpm 仓库源
1 2 3 4 5
| # 如果还没有安装 pnpm npm install -g pnpm
# 安装 OpenClaw pnpm add -g openclaw@latest
|
安装openclaw
1 2 3
| npm install -g openclaw@latest
openclaw --version
|
1 2 3 4
| openclaw onboard --install-daemon
# 启动 Gateway 控制平面 openclaw gateway --port 18789 --verbose
|
在终端执行以下命令:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| openclaw onboard --install-daemon
? 选择 AI 模型供应商: ❯ MiniMax M2.5(CN) - 国内可用,中文支持好 Kimi - 月之暗面,长文本处理强 DeepSeek - 推理能力强,代码能力出色 Claude - Anthropic 出品(需国际网络) OpenAI GPT - 经典选择(需国际网络) Gemini - Google 出品(需国际网络) Ollama - 本地模型,完全离线 ? 输入 API Key: [粘贴你的 API Key] ✓ 正在验证 API Key... ✓ 认证成功!
? 是否现在配置 Channel(渠道)? ❯ 跳过,稍后配置
? 是否现在安装 Skills(技能)? ❯ 跳过,稍后安装
? 是否现在配置 Hooks(钩子)? ❯ 跳过,稍后配置
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| openclaw dashboard
openclaw gateway --port 18789 --verbose
openclaw status
openclaw logs
openclaw doctor
openclaw stop
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| openclaw agent --message "你好" --thinking high
openclaw message send --to +1234567890 --message "Hello from OpenClaw"
openclaw agents list
openclaw agents add <agent-name>
openclaw agents edit <agent-name>
|
1 2 3 4 5 6 7 8 9 10 11
| openclaw channels list
openclaw channels add
openclaw channels remove <channel-name>
openclaw channels restart <channel-name>
|
1 2 3 4 5 6 7 8 9 10 11
| openclaw skills list
clawhub search <关键词>
clawhub install <skill-name>
openclaw skills uninstall <skill-name>
|
1 2 3 4 5 6 7 8
| openclaw plugins list
openclaw plugins enable <plugin-name>
openclaw plugins disable <plugin-name>
|
1 2 3 4 5 6 7
| openclaw update
openclaw update --channel stable openclaw update --channel beta openclaw update --channel dev
|
部署QWen自定义大模型参数
1 2
| https://dashscope.aliyuncs.com/compatible-mode/v1 qwen3.5-plus
|
部署deepSeek大模型
1 2
| https://api.deepseek.com deepseek-v4-flash
|
转载请注明来源。若文章内容存在错误、过期信息或更优解法,欢迎在仓库中提出修正。