https://www.jianshu.com/p/d080d06557be
更改环境变量来修改默认的php版本
新建一个.bas_profile文件并编辑
vim ~/.bash_profile
然后在里面输入自己想要的php版本
export PATH=/Applications/MAMP/bin/php/php7.2.7/bin:$PATH
#/Applications/MAMP/bin/php/php7.2.7/bin是我的php版本路径
保存重载环境变量
source ~/.bash_profile
以上没解决问题
https://blog.csdn.net/hlllmr1314/article/details/52228672
按照如上修改了~/.bash_profile文件发现无效,并且提示 zsh: command not found: homestead 那么肯定是安装了zsh的缘故,因为安装zsh,~/.bash_profile就不会被执行,解决办法如下:
1.打开vim ~/.zshrc 将你要配置到环境变量配置到该文件中即可
2.打开vim ~/.zshrc 添加source ~/.bash_profile ,这样~/.bash_profile配置的环境变量同样有效