14
3
When I enter the command brew doctor I get the error below. This this something to worry about?
Im very new to command line stuff. Im using homebrew to install Drush (for Drupal).
Last login: Wed Oct 9 14:59:40 on ttys001
unknown:~ MY-USERNAME$ brew doctor
Warning: Unbrewed dylibs were found in /usr/local/lib.
If you didn't put them there on purpose they could cause problems when
building Homebrew formulae, and may need to be deleted.
Unexpected dylibs:
/usr/local/lib/libTrAPI.dylib
6this is a horrible answer, consider Brian Carlsons answer. – scravy – 2014-12-29T11:44:39.323
You could try to move the file elsewhere and wait to see if something breaks.
mv /usr/local/lib/libTrAPI.dyli ~/Desktop/
– ayman – 2017-09-29T17:01:21.3471To elaborate on @scravy , the reason this is a horrible answer is that by deleting them, you may break something. Unfortunately, not everything you have on your machine has been installed by Homebrew nor can everything be installed via Homebrew.
brew doctor
itself states, effectively, that you should try to clean up what you can, and ignore warnings that you cannot easily fix. This is because Homebrew knows they cannot be responsible for everything on your machine. – Mike Williamson – 2018-12-19T19:16:24.740