diff --git a/landingpage/index.html b/landingpage/index.html
index 2d1f99972..7ae7be162 100644
--- a/landingpage/index.html
+++ b/landingpage/index.html
@@ -36,6 +36,7 @@
@@ -100,7 +93,7 @@
- Works on Linux, macOS & WSL · No prerequisites · Installs everything automatically
+ Works on Linux, macOS & WSL2 · No prerequisites · Installs everything automatically
@@ -355,9 +348,7 @@
@@ -422,7 +413,7 @@ hermes gateway install
-
🪟 Windows requires Git for Windows — Hermes uses Git Bash internally for shell commands.
+
🪟 Native Windows support is extremely experimental and unsupported. Please install WSL2 and run Hermes Agent from there.
diff --git a/landingpage/script.js b/landingpage/script.js
index 422ba3bea..8af7d95d6 100644
--- a/landingpage/script.js
+++ b/landingpage/script.js
@@ -7,26 +7,12 @@ const PLATFORMS = {
linux: {
command: 'curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash',
prompt: '$',
- note: 'Works on Linux, macOS & WSL · No prerequisites · Installs everything automatically',
+ note: 'Works on Linux, macOS & WSL2 · No prerequisites · Installs everything automatically',
stepNote: 'Installs uv, Python 3.11, clones the repo, sets up everything. No sudo needed.',
},
- powershell: {
- command: 'irm https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.ps1 | iex',
- prompt: 'PS>',
- note: 'Windows PowerShell · Requires Git for Windows · Installs everything automatically',
- stepNote: 'Requires Git for Windows. Installs uv, Python 3.11, sets up everything.',
- },
- cmd: {
- command: 'curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.cmd -o install.cmd && install.cmd && del install.cmd',
- prompt: '>',
- note: 'Windows CMD · Requires Git for Windows · Installs everything automatically',
- stepNote: 'Requires Git for Windows. Downloads and runs the installer, then cleans up.',
- },
};
function detectPlatform() {
- const ua = navigator.userAgent.toLowerCase();
- if (ua.includes('win')) return 'powershell';
return 'linux';
}