DEV Community

0xkoji
0xkoji

Posted on

How to Uninstall Hermes Desktop from macOS

I installed Hermes Desktop on macOS but it was different from what I expected lol (I thought it would work as a client application for my Hermes agent I set up).

Here are 4 steps to uninstall Hermes Desktop from macOS.

1 Stop Hermes gateway

hermes gateway stop
Enter fullscreen mode Exit fullscreen mode

2 Kill the process

pkill -f "hermes"\n
Enter fullscreen mode Exit fullscreen mode

3 Remove files

rm -f ~/.local/bin/hermes\n
rm -rf ~/.hermes\n
Enter fullscreen mode Exit fullscreen mode

4 Clean up system ctl

launchctl unload ~/Library/LaunchAgents/ai.hermes.gateway.plist
launchctl remove ai.hermes.gateway
rm -f ~/Library/LaunchAgents/ai.hermes.gateway.plist
Enter fullscreen mode Exit fullscreen mode

Top comments (0)