moltbot安装配置
舟率率 1/27/2026 environment
# 基于ubuntu
# 安装环境
cat > run.sh << EOF
# 安装ca
sudo apt update
sudo apt install -y --reinstall ca-certificates
# 获取molt.bot一键安装文件
curl -fsSL https://molt.bot/install.sh -o install.sh
# 替换molt.bot源码地址
sed -i 's|https://github.com/moltbot/moltbot.git|https://gitee.com/Apophisdeity/moltbot.git|g' install.sh
# 安装pnpm
[ -f install.sh ] && (grep -qxF "sudo npm install -g pnpm" install.sh || (grep -q "local final_git_dir=" install.sh && sed -i "/local final_git_dir=/i\\ sudo npm install -g pnpm" install.sh && echo "已添加命令" || echo "未找到插入标记行")) || echo "文件不存在"
bash install.sh --install-method git
EOF
bash run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 配置环境
## 配置部署方式,功能清单,联系方式及大模型
clawdbot onboard --install-daemon
moltbot onboard --install-daemon
1
2
3
4
5
2
3
4
5