15

当我使用 安装守望者时brew install watchman,它得到了这个Error: You must brew link pcre before watchman can be installed。所以我尝试了brew link pcrebrew 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.

任何人都可以帮忙吗?

4

2 回答 2

36

按照设计 Homebrew (brew) 要求/usr/local您拥有的内容。您可以通过运行轻松修复它:

sudo chown -R `whoami` /usr/local

从您的终端。

请参阅此处以获取更多说明。

于 2015-03-28T19:27:54.423 回答
5

第一的

sudo chown -R 'your name' /usr/local

然后

brew link pcre -f

然后

brew install watchman

它应该工作

于 2016-06-01T08:26:40.767 回答