我正在尝试安装Laravel Valet,这需要php 7.1,但是当我运行brew install php71时,我收到以下错误:
==> Pouring php71-7.1.10_21.high_sierra.bottle.tar.gz
Error: The `brew link` step did not complete successfully
The formula built, but is not symlinked into /usr/local
Could not symlink sbin/php-fpm
/usr/local/sbin is not writable.
运行brew link php71
时出现同样的错误。如果我运行php -v
,我实际上看到我正在运行PHP 7.1.7。
但是当我运行valet install时,我得到了:
[DomainException]
Unable to determine linked PHP.
我在/ usr / local中甚至没有sbin目录。
有什么建议吗?
答案 0 :(得分:41)
我首先在本地目录中创建了一个新的目录sbin
来解决这个问题:
sudo mkdir sbin
然后如果你像我一样使用macOS highSierra 10+你需要运行:
sudo chown -R $(whoami) $(brew --prefix)
之后
brew link php71
答案 1 :(得分:0)
安装Laravel代客,我遇到类似的问题,sbin不可写。我必须创建目录,然后使用this page中包含的解决方案。这最终允许我使用以前安装的php 7.1版本运行brew链接命令的适当权限。