EXE 开发版
Windows EXE 开发版本说明。
简介
EXE 开发版是面向开发者的 Windows 可执行文件版本。
下载
bash
# 从 GitHub Releases 下载
curl -L https://github.com/SpeedGeeker/clawdbot/releases/latest/download/openclaw.exe功能特性
| 功能 | 状态 | 说明 |
|---|---|---|
| WebSocket Gateway | ✅ | 支持 |
| TUI 界面 | ✅ | 支持 |
| 图形界面 | 🔧 开发中 | 即将推出 |
| 系统托盘 | ✅ | 支持 |
| 自启动 | ✅ | 支持 |
安装
powershell
# 以管理员身份运行
.\openclaw.exe install
# 启动服务
.\openclaw.exe start
# 查看状态
.\openclaw.exe status
# 停止服务
.\openclaw.exe stop配置
yaml
platform:
windows:
exe:
auto_start: true
tray_icon: true
min_to_tray: true
service:
name: "OpenClaw"
display_name: "OpenClaw Service"
description: "AI Personal Assistant"常见问题
无法启动
powershell
# 检查端口占用
netstat -ano | findstr :8211
# 以管理员身份重新安装
.\openclaw.exe uninstall
.\openclaw.exe install
.\openclaw.exe start更新问题
powershell
# 手动更新
.\openclaw.exe stop
.\openclaw.exe uninstall
# 下载新版本
.\openclaw.exe install
.\openclaw.exe start