hermes-cn 安装器

在 Windows 目标机上运行。从这台 Mac 拉取 install-cn.ps1sha256sums.txt,然后通过国内镜像调用上游 Hermes 安装脚本。

推荐方式 · 下载并双击运行

下载 install.cmd

下载完后在文件资源管理器中 双击 即可运行;脚本会用 -ExecutionPolicy Bypass 启动 PowerShell,绕过默认的脚本执行策略限制。首次运行 Windows 可能弹出"安全警告"(未签名脚本),点 仍要运行 / Run anyway 即可。

或者:在 PowerShell 中手动粘贴命令

Win+X,再按 I 打开 PowerShell(不需要管理员)。若提示执行策略错误,先运行 Set-ExecutionPolicy -Scope Process Bypass

PowerShell
# hermes-cn — 在 Windows PowerShell 中粘贴运行
$b = 'https://proxy.bigmodel.internal.cnwelly.com'
$t = $env:TEMP
iwr $b/install-cn.ps1  -OutFile $t\install-cn.ps1  -UseBasicParsing
iwr $b/sha256sums.txt  -OutFile $t\sha256sums.txt  -UseBasicParsing
& $t\install-cn.ps1 -ChecksumsPath $t\sha256sums.txt

说明:二进制依赖(uv、PortableGit、Node.js、PyPI、npm、Playwright)走国内镜像下载,Windows 机器需要能联网。这台 Mac 只负责分发 wrapper 脚本和校验和文件。

所有文件

install.cmd 推荐 README.md hermes-diag.ps1 install-cn.ps1 serve-lan.py sha256sums.txt status.log update-checksums.ps1 upload.ps1

→ 查看各机器安装状态

已复制