Created
May 21, 2012 13:45
-
-
Save yeahq/2762397 to your computer and use it in GitHub Desktop.
Uninstall Homebrew manually
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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