返回顶部
o

openclaw-deployOpenClaw部署指南

OpenClaw/NEUXSBOT 全平台部署指南 - 支持 Mac、Windows、Linux 三平台一键安装。包含环境准备、安装配置、AI模型设置、消息平台对接、故障排除等完整流程。

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
310
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

openclaw-deploy

OpenClaw 全平台部署指南

OpenClaw(NEUXSBOT)跨平台安装配置完整教程,支持 macOS、Windows、Linux 三平台实操。



📋 目录

  1. 1. 系统要求
  2. macOS 部署
  3. Windows 部署
  4. Linux 部署
  5. AI 模型配置
  6. 消息平台对接
  7. 故障排除

系统要求

最低配置

项目要求
操作系统Windows 10/11, macOS 10.15+, Ubuntu 20.04+
内存
4GB RAM | | 磁盘空间 | 2GB 可用空间 | | 网络 | 需要访问 AI 模型 API(或使用本地模型) |

推荐配置

项目要求
操作系统Windows 11, macOS 12+, Ubuntu 22.04+
内存
8GB RAM 或更多 | | 磁盘空间 | 5GB 可用空间 | | 处理器 | 支持本地模型运行(如使用 Ollama) |

macOS 部署

方法一:DMG 安装包(推荐)

步骤 1:下载安装包

bash

访问 GitHub Releases 下载最新版


curl -LO https://github.com/Markovmodcn/openclaw-china/releases/latest/download/NEUXSBOT.dmg

步骤 2:安装应用

  1. 1. 双击打开 NEUXSBOT.dmg
  2. 将 NEUXSBOT 图标拖拽到 Applications 文件夹
  3. 等待复制完成

步骤 3:首次运行

bash

方法 1:通过 Applications 打开


open /Applications/NEUXSBOT.app

方法 2:如果提示无法验证开发者

前往 系统设置 > 隐私与安全 > 允许打开

绕过安全检查:

  1. 1. 右键点击 NEUXSBOT.app
  2. 选择打开
  3. 在弹出的对话框中点击打开

方法二:脚本安装

bash

一键安装脚本


curl -fsSL https://raw.githubusercontent.com/Markovmodcn/openclaw-china/main/scripts/install.sh | bash

方法三:Homebrew 安装(如可用)

bash

添加 tap(如果官方提供)


brew tap openclaw/china

安装

brew install --cask nexusbot

macOS 配置文件位置

bash

配置文件


~/.nexusbot/config.yaml

日志文件

~/.nexusbot/logs/

数据文件

~/.nexusbot/data/

技能插件

~/.nexusbot/skills/

Windows 部署

方法一:安装版(推荐)

步骤 1:下载安装包

powershell

使用 PowerShell 下载


Invoke-WebRequest -Uri https://github.com/Markovmodcn/openclaw-china/releases/latest/download/NEUXSBOT-Setup.exe -OutFile NEUXSBOT-Setup.exe

或直接访问浏览器下载:

  • - 打开 https://github.com/Markovmodcn/openclaw-china/releases/latest
  • 下载 NEUXSBOT-Setup.exe

步骤 2:运行安装程序

  1. 1. 双击 NEUXSBOT-Setup.exe
  2. 如果提示Windows 已保护你的电脑:
- 点击更多信息 - 点击仍要运行
  1. 3. 按照安装向导操作
  2. 选择安装位置(默认:C:\Program Files\NEUXSBOT)

步骤 3:完成安装

  • - 安装完成后会自动创建桌面快捷方式
  • 双击快捷方式启动

方法二:绿色便携版

powershell

下载便携版


Invoke-WebRequest -Uri https://github.com/Markovmodcn/openclaw-china/releases/latest/download/NEUXSBOT-Portable.zip -OutFile NEUXSBOT-Portable.zip

解压

Expand-Archive -Path NEUXSBOT-Portable.zip -DestinationPath C:\Tools\NEUXSBOT

运行

& C:\Tools\NEUXSBOT\NEUXSBOT.exe

方法三:PowerShell 脚本安装

powershell

一键安装


iwr -useb https://raw.githubusercontent.com/Markovmodcn/openclaw-china/main/scripts/install.ps1 | iex

Windows 配置文件位置

powershell

配置文件


%USERPROFILE%\.nexusbot\config.yaml

日志文件

%USERPROFILE%\.nexusbot\logs\

数据文件

%USERPROFILE%\.nexusbot\data\

Windows 防火墙设置

如果 NEUXSBOT 需要接收外部 webhook:

powershell

以管理员身份运行 PowerShell


New-NetFirewallRule -DisplayName NEUXSBOT -Direction Inbound -Protocol TCP -LocalPort 3000 -Action Allow


Linux 部署

Ubuntu/Debian(推荐)

步骤 1:下载 .deb 包

bash

下载最新版


wget https://github.com/Markovmodcn/openclaw-china/releases/latest/download/nexusbot_amd64.deb

或使用 curl

curl -LO https://github.com/Markovmodcn/openclaw-china/releases/latest/download/nexusbot_amd64.deb

步骤 2:安装

bash

安装 .deb 包


sudo dpkg -i nexusbot_amd64.deb

如果提示依赖问题,修复依赖

sudo apt-get install -f

步骤 3:启动

bash

命令行启动


nexusbot

或使用 systemd 服务

sudo systemctl enable nexusbot sudo systemctl start nexusbot

CentOS/RHEL/Fedora

bash

下载 RPM 包(如提供)


wget https://github.com/Markovmodcn/openclaw-china/releases/latest/download/nexusbot_amd64.rpm

安装

sudo rpm -i nexusbot_amd64.rpm

或使用 dnf

sudo dnf install nexusbot_amd64.rpm

通用脚本安装(所有发行版)

bash

一键安装脚本


curl -fsSL https://raw.githubusercontent.com/Markovmodcn/openclaw-china/main/scripts/install.sh | bash

Docker 安装(跨平台)

bash

使用 Docker 运行


docker run -d \
--name nexusbot \
-p 3000:3000 \
-v nexusbot-data:/data \
markovmodcn/nexusbot:latest

查看日志

docker logs -f nexusbot

停止

docker stop nexusbot

删除

docker rm nexusbot

Docker Compose 部署

创建 docker-compose.yml:

yaml
version: 3.8

services:
nexusbot:
image: markovmodcn/nexusbot:latest
container_name: nexusbot
restart: unless-stopped
ports:
- 3000:3000
volumes:
- nexusbot-data:/data
- ./config.yaml:/app/config.yaml:ro
environment:
- NODE_ENV=production
- LOG_LEVEL=info

volumes:
nexusbot-data:

启动:

bash
docker-compose up -d

Linux 配置文件位置

bash

配置文件


~/.nexusbot/config.yaml

日志文件

~/.nexusbot/logs/

数据文件

~/.nexusbot/data/

全局配置(如使用 systemd)

/etc/nexusbot/config.yaml

Linux 系统服务设置

创建 systemd 服务文件 /etc/systemd/system/nexusbot.service:

ini
[Unit]
Description=NEUXSBOT AI Agent
After=network.target

[Service]
Type=simple
User=your-username
WorkingDirectory=/home/your-username
ExecCommand=/usr/bin/nexusbot
Restart=always
RestartSec=10

[Install]
WantedBy=multi-user.target

启用并启动:

bash
sudo systemctl daemon-reload
sudo systemctl enable nexusbot
sudo systemctl start nexusbot

查看状态

sudo systemctl status nexusbot

查看日志

sudo journalctl -u nexusbot -f

AI 模型配置

选项 A:本地模型(推荐)

安装 Ollama

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 openclaw-deploy-guide-1776191376 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 openclaw-deploy-guide-1776191376 技能

通过命令行安装

skillhub install openclaw-deploy-guide-1776191376

下载

⬇ 下载 openclaw-deploy v1.0.0(免费)

文件大小: 12.14 KB | 发布时间: 2026-4-15 13:17

v1.0.0 最新 2026-4-15 13:17
Initial release: OpenClaw/NEUXSBOT full cross-platform deployment guide.

- Provides step-by-step installation instructions for macOS, Windows, and Linux.
- Covers environment preparation, configuration, AI model setup (local and cloud), and message platform integration.
- Includes troubleshooting and common issue fixes.
- Supports one-click installation scripts for all platforms.
- Configuration guidance for DingTalk, Feishu, WeCom, and firewall settings.
- Docker and Docker Compose installation instructions included.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部