Mac中brew upgrade php@7.2對7.2版本更新,而後控制檯中輸入:php -v提示報錯以下:php
bash: /usr/local/Cellar/php@7.2/7.2.17_1/bin/php: No such file or directoryvim
由於7.2.17_1是老版本包內容在更新後自動被刪除,因此咱們須要替換系統配置:
一、找到更新目錄名:
bash
$ cd /usr/local/Cellar/php@7.2
$ ls
ide
這裏對更新目錄是7.2.30_1
二、找到系統配置文件
blog
$ vim ~/.bash_profileit
替換爲更新的目錄
class
三、讓配置生效配置
$ source ~/.bash_profilefile
四、再次執行 php -v 能看到版本號了就哦了(注意若是開了多個控制檯載入原來的配置問題,關掉原來打開的其餘控制檯)im