After installing and uninstalling some programs through brew
and brew cask
, now I get brew doctor
saying "unlinked kegs in your Cellar".
It suggests to link them, to avoid build trouble with later brews, but instead I'd rather delete them, as they're leftovers from brew programs or formulas that I don't use anymore.
How or where do I remove these? (I don't even know what a keg, or the Cellar, is)
After installing homebrew on Mac I had the following error:
After running
brew link libtool
I would get the following error:But as it turned out I didn't have a folder
/usr/local/include
at all. So I created it. And then changed the owner and group of the new folder to match the other folders in/usr/local
. The next error was the same for/usr/local/lib
, so I followed the same process.After creating those two folders,
brew link [package]
worked.Cheers. Appleseed.