環境
- Mac OS
- Laravel Valet 2.0.12
遭遇したエラー
$ valet install
時に下記のエラーが発生
$ valet install
Stopping nginx...
Installing nginx configuration...
Installing nginx directory...
Updating PHP configuration...
In Brew.php line 182:
Unable to determine linked PHP.
install
つまり、Unable to determine linked PHP.
と言われている。
解決法
homebrewでPHPへのリンクをきちんと貼る。
僕の場合、
$ brew install php71
で7系をインストールしていたので、
$ brew link php71 --force
によって、PHPへのリンクを貼りました。
すると…
$ valet install
Stopping nginx...
Installing nginx configuration...
Installing nginx directory...
Updating PHP configuration...
Restarting php@7.1...
Installing dnsmasq...
[dnsmasq] is not installed, installing it now via Brew... 🍻
Restarting dnsmasq...
Restarting nginx...
Valet installed successfully!
インストール完了しました!