安装脚本加速
# 国内直连 raw.githubusercontent.com 经常超时。
# 思路一:给 curl / git 配置你自己的 HTTP 代理后再跑官方脚本
export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash
# 思路二:用 GitHub 加速镜像前缀拉取安装脚本(按你常用的加速服务替换域名)
curl -fsSL https://<github加速域名>/https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash