我需要一个用于 magento 的特定版本的 PHP (7.1.3)
使用 home brew 或 curl,我只能指定一位小数(7.1、7.2 等)。
跑步
brew install php@7.1
最终得到我
php -v
PHP 7.1.29 (cli) (built: May 21 2019 20:05:17) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.1.29, Copyright (c) 1999-2018, by Zend
Technologies
尝试安装特定版本(就像使用 nvm 的节点一样):
brew install php@7.1.3
得到我
Error: No available formula with the name "php@7.1.3"
我尝试使用 curl 命令,同样的问题:
https://php-osx.liip.ch/install.sh | bash -s 7.1.3
得到我
Did or could not download package: 7.1.3-frontenddev
TL;DR:我如何在 mac 上安装确切版本的 PHP (7.1.3)?
慕村225694