Reputation: 3458
I installed bash via brew to check out version 4. I would like to remove this. I cannot use my npm packages correctly and am at a standstill. Wondering how to remove an installation from homebrew?
Upvotes: 0
Views: 1917
Reputation: 36
Have you tried brew uninstall bash
?
If that doesn't work for you, you could try removing the actual files, usually /usr/local/Cellar/bash/
and /usr/local/bin/bash
. This should get you at least far enough to be using your old bash
binaries, from where you could do any further cleanup.
Upvotes: 1