当我使用brew install watchman
安装守望者时,它获得了此Error: You must brew link pcre before watchman can be installed
。所以我尝试了brew link pcre
和brew link --overwrite pcre
linking /usr/local/Cellar/pcre/8.36...
Error: Could not symlink share/man/man3/pcre.3
/usr/local/share/man/man3 is not writable.
有人可以帮忙吗?
答案 0 :(得分:36)
按照设计,Homebrew(brew)要求/usr/local
的内容归您所有。您可以通过运行来轻松修复它:
sudo chown -R `whoami` /usr/local
从您的终端。
有关详细说明,请参阅here。
答案 1 :(得分:5)
第一
sudo chown -R 'your name' /usr/local
然后
brew link pcre -f
然后
brew install watchman
它应该有用