macbook php -v 提示错误zsh: command not found: php
需要配置php环境变量。
vim ~/.bash_profile
找到你的php版本安装路径
/opt/homebrew/Cellar/php@7.4/7.4.33_6 //我的路径
添加好之后执行以下命令
source ~/.bash_profile
如果你是在phpstorm里需要运行php -v或者其他cli命令,可以在编辑器终端也执行一遍上面的命令即可。
需要配置php环境变量。
vim ~/.bash_profile
找到你的php版本安装路径
/opt/homebrew/Cellar/php@7.4/7.4.33_6 //我的路径
添加好之后执行以下命令
source ~/.bash_profile
如果你是在phpstorm里需要运行php -v或者其他cli命令,可以在编辑器终端也执行一遍上面的命令即可。