windows hermes agent 使用记录

github地址:

https://github.com/NousResearch/hermes-agent


wsl 安装hermes

因为我是 win,官方的原装方案是安装 wsl

建议还是看英文文档,中文文档里去掉了 win 原生安装。实际上我打算两个都搞

Run this in PowerShell:

复制代码
iex (irm https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.ps1)

The installer handles everything: uv, Python 3.11, Node.js, ripgrep, ffmpeg, and a portable Git Bash (MinGit, unpacked to %LOCALAPPDATA%\hermes\git --- no admin required, completely isolated from any system Git install). Hermes uses this bundled Git Bash to run shell commands.

If you already have Git installed, the installer detects it and uses that instead. Otherwise a ~45MB MinGit download is all you need --- it won't touch or interfere with any system Git.

wsl 安装我觉得不用写在教程里了,不会的就去问deepseek好了。我用的 Ubuntu 环境

装完wsl也就是一句话:

复制代码
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash

装完我习惯在 windows terminal 中运行:

先 wsl -> sudo -i (需要root权限)-> hermes 就可以进去了。

配置 Hermes

不过首先要运行的是 hermes setup

这里我建议 quick 就行

如果是自定义的模型(列表里没有,那么就要选 custom)

里面输入url ,这里要注意,你的地址要和你的格式相对应。我这里选用 openai的格式

  • OpenAI格式https://api.xx.chat/openai
  • Anthropic格式https://api.xx.chat/anthropic

上面的key输进去是没反应的,直接确认即可。

这里的api模型就重要了,要和上面对应。因为选的 openai 格式地址,所以要选2

后面是模型的选择,以及上下文,这里不能错,错了上下文就小了。

复制代码
1000000

这里本地就是 local

快捷方式

如果要 wsl,那么建议生成个bat快捷方式,用terminal打开:

bash 复制代码
@echo off
start "" "C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps\wt.exe" -p Hermes

terminal 中也可以加个

原生安装


使用 wsl 他最多的就是和你说缺失工具 or权限要你帮忙运行,所以如果主力是win还是得原生安装。

因为网络原因所以先把一部分能装的先装了:

uv

复制代码
irm https://astral.sh/uv/install.ps1 | iex

python 3.11 -- 他写死检测这个版本

复制代码
$env:UV_PYTHON_INSTALL_MIRROR = "https://github.com/astral-sh/python-build-standalone/releases/download"
uv python install 3.11

如果还不行就上代理:

复制代码
$env:HTTPS_PROXY = "http://127.0.0.1:10808"
$env:HTTP_PROXY = "http://127.0.0.1:10808"
uv python install 3.11

然后装 装 ripgrep 和 ffmpeg

复制代码
irm -Proxy http://127.0.0.1:10808 get.scoop.sh | iex
scoop install ripgrep ffmpeg

然后跑命令就行。

配置

可以先用 hermes setup配。配通了也就后面让他自己想办法即可。

相关推荐
love530love19 小时前
用自然语言让 AI Agent 卸载软件 —— 以卸载 Visual Studio 2026 为例
ide·人工智能·windows·agent·visual studio·ai agent·marvis
Yang_jie_0320 小时前
笔记:数据结构(顺序表)
数据结构·windows·笔记
三十岁老牛再出发1 天前
07.07.每日总结
c语言·windows·python
nianniannnn1 天前
c++复习自存--标准模板库STL
开发语言·c++·windows
2601_963771371 天前
Optimizing Logistics and Transportation Sites on WordPress
前端·数据库·windows·php
Java面试题总结1 天前
C# 源生成器使用方法
windows·ui·c#
C++ 老炮儿的技术栈1 天前
MFC 自定义纯色居中文字进度条控件
c语言·数据库·c++·windows·算法·c·visual studio
forestsea1 天前
如何使用 Winget 下载 Claude Code 并实现绿色便携安装
windows·claudecode
yanwei20202 天前
NinChat:构建 AI 时代的实时新闻搜索基础设施
人工智能·ai agent·openclaw·hermes·meilishard·热点新闻聚合
海天鹰2 天前
WIN10修改窗口标题栏失去焦点背景色
windows