homebrew - Can't link pcre thru brew in max os yosemite -
when install watchman using brew install watchman
, got error: must brew link pcre before watchman can installed
. try brew link pcre
, brew link --overwrite pcre
, got linking /usr/local/cellar/pcre/8.36... error: not symlink share/man/man3/pcre.3 /usr/local/share/man/man3 not writable.
can help?
by design homebrew (brew) requires contents of /usr/local
owned you. can fix running:
sudo chown -r `whoami` /usr/local
from terminal.
see here further explanation.
Comments
Post a Comment