Skip to content

Instantly share code, notes, and snippets.

@yeahq
Created May 21, 2012 13:45
Show Gist options
  • Save yeahq/2762397 to your computer and use it in GitHub Desktop.
Save yeahq/2762397 to your computer and use it in GitHub Desktop.
Uninstall Homebrew manually
//http://superuser.com/questions/203707/how-to-uninstall-homebrew-osx-package-manager
Here's how they recommend doing it:
cd `brew --prefix`
rm -rf Cellar
brew prune
rm -rf Library .git .gitignore bin/brew README.md share/man/man1/brew
rm -rf ~/Library/Caches/Homebrew
This should also revert your /usr/local folder to its pre-Homebrew days. See the Homebrew installation wiki for more information.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment