Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@gatlin
Last active April 11, 2024 22:31
Show Gist options
  • Star 38 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save gatlin/3862648 to your computer and use it in GitHub Desktop.
Save gatlin/3862648 to your computer and use it in GitHub Desktop.
Uninstall Haskell from Mac OS X
#!/bin/bash
# source: http://www.haskell.org/pipermail/haskell-cafe/2011-March/090170.html
sudo rm -rf /Library/Frameworks/GHC.framework
sudo rm -rf /Library/Frameworks/HaskellPlatform.framework
sudo rm -rf /Library/Haskell
rm -rf ~/.cabal
rm -rf ~/.ghc
rm -rf ~/Library/Haskell
find /usr/bin /usr/local/bin -type l | \
xargs -If sh -c '/bin/echo -n f /; readlink f' | \
egrep '//Library/(Haskell|Frameworks/(GHC|HaskellPlatform).framework)' | \
cut -f 1 -d ' ' > /tmp/hs-bin-links
# review /tmp/hs-links
sudo rm `cat /tmp/hs-bin-links`
@mikeschinkel
Copy link

mikeschinkel commented Jul 20, 2021

Hi @olivier-text100

Or run:
$ uninstall-hs

Where should I expect uninstall-hs to be found?

It is not in my path and looking for up I turn up nothing.

@itseramin
Copy link

What about .ghcup?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment