Skip to content

Instantly share code, notes, and snippets.

Created February 2, 2017 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save anonymous/f67532e7cec17ae9796156d295934d24 to your computer and use it in GitHub Desktop.
Save anonymous/f67532e7cec17ae9796156d295934d24 to your computer and use it in GitHub Desktop.
Uninstall brew package and dependencies

Uninstall brew package and dependencies

Remove package's dependencies (does not remove package):

brew deps [FORMULA] | xargs brew remove --ignore-dependencies

Remove package:

brew remove [FORMULA]

Reinstall missing libraries:

brew missing | cut -d: -f2 | sort | uniq | xargs brew install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment