美文网首页
Mac 升级 PHP

Mac 升级 PHP

作者: JJNile | 来源:发表于2020-02-25 10:14 被阅读0次

使用 brew 安装 php,不需要指定安装版本,它会自动升级到最新版本,同时 brew 会自动 update

brew install php

安装完后编辑 ~/.bash_profile 文件,如果没有的话就新建

sudo vim ~/.bash_profile

末尾追加一下两行

..
..
PATH="$(brew --prefix php)/bin:$PATH"
export PYTHON_ENV=development

然后执行脚本

source ~/.bash_profile

最后再使用 php -v 查看版本,如果是最新的稳定版说明已经升级成功

参考链接

https://www.hangge.com/blog/cache/detail_2333.html

相关文章

网友评论

      本文标题:Mac 升级 PHP

      本文链接:https://www.haomeiwen.com/subject/qljzqhtx.html