Windows installer stuck at 29% — sudo prompt receives no input
Platform: Windows 11 (native, no WSL)
Version: v0.3.5 (latest)
What happens
The GUI installer hangs at 29% (Step 2/7: Setting up package manager). The embedded terminal shows:
→ sudo is needed ONLY to install optional system packages (ripgrep ffmpeg) via your package manager.
→ Hermes Agent itself does not require or retain root access.
Install ripgrep for faster file search ffmpeg for TTS voice messages? [Y/n]
The prompt never receives input and the installer never progresses. This affects both normal and administrator-elevated launches.
Root cause
The Electron app is spawning the Unix install.sh script through bash on Windows. The interactive Y/n prompt for ripgrep/ffmpeg has no stdin available through the Electron IPC pipe, so it hangs indefinitely waiting for input that can never arrive.
Steps to reproduce
- Download
Hermes.Desktop.Setup.x.x.x.exe from the releases page
- Run the installer (with or without admin)
- On first launch, choose local install
- Observe hang at 29%
Expected behavior
Installer completes without requiring interactive input, or skips optional packages on Windows.
Notes
I can see there is already a fix merged to main (fix: install Hermes natively on Windows — use PowerShell installer on win32 instead of bash) but it does not appear to be included in v0.3.5. This issue is a duplicate of #26. Requesting a patch release.
Windows installer stuck at 29% — sudo prompt receives no input
Platform: Windows 11 (native, no WSL)
Version: v0.3.5 (latest)
What happens
The GUI installer hangs at 29% (Step 2/7: Setting up package manager). The embedded terminal shows:
The prompt never receives input and the installer never progresses. This affects both normal and administrator-elevated launches.
Root cause
The Electron app is spawning the Unix
install.shscript through bash on Windows. The interactive Y/n prompt for ripgrep/ffmpeg has no stdin available through the Electron IPC pipe, so it hangs indefinitely waiting for input that can never arrive.Steps to reproduce
Hermes.Desktop.Setup.x.x.x.exefrom the releases pageExpected behavior
Installer completes without requiring interactive input, or skips optional packages on Windows.
Notes
I can see there is already a fix merged to main (
fix: install Hermes natively on Windows— use PowerShell installer on win32 instead of bash) but it does not appear to be included in v0.3.5. This issue is a duplicate of #26. Requesting a patch release.