1、下载代码:下载
2、执行命令:
bash
C:\bot\openclaw>npx tsx src/index.ts
C:\bot\openclaw>npx tsx src/index.ts setup
-- 配置
npx tsx src/index.ts config
-- 下面是核心步骤
Where will the Gateway run?
| > Local (this machine) (No gateway detected (ws://127.0.0.1:18789))
Select sections to configure
| > Model
* Model/auth provider
| > Qwen (OAuth)----阿里千问(需要等好一会儿)
* Models in /model picker (multi-select)
[•] openrouter/qwen/qwen3-coder:free (我选的这个,看着想免费的)
* Select sections to configure
| > Continue (Done)
bash
# 1. 启动网关服务(主要服务)
npx tsx src/index.ts gateway
-- 生成token(网上随机生成)
claw-1473829f102e516193f5f209002xxxxx
npx tsx src/index.ts config set gateway.auth.token "claw-1473829f102e516193f5f209002xxxxx"
npx tsx src/index.ts config set gateway.remote.token "claw-1473829f102e516193f5f209002xxxxx"
# 2. 在另一个窗口测试
npx tsx src/index.ts status
npx tsx src/index.ts health
# 3. 使用AI功能(通过命令能回答,说明已经成功了)
npx tsx src/index.ts agent --message "你好,介绍一下你自己"
运行效果:

3、安装pnpm、配置环境目录(用于启动前端)
(执行圈出来的两部,别走弯路):
管理员运行powershell
①npm install -g pnpm
②pnpm config get registry
没有则修改pnpm源 pnpm config set registry https://registry.npmmirror.com
③ pnpm config set store-dir "C:\Users\(你的电脑用户名)\.pnpm-store"

④pnpm ui:dev


but??----等待有时间研究

带token访问:http://127.0.0.1:18789/?token=claw-1473829f102e516193f5f209002xxxxx

。
.