我已经从这里http://php-osx.liip.ch/安装了PHP 7.0,并按照说明将新的php添加到我的$PATH
,但在新的终端窗口中php -v
仍显示旧的默认版本。
如果我source .profile
或source .bash_profile
(尝试过两者)
我甚至在我的.bashrc
添加了新的PHP路径,但仍然没有运气。
默认情况下,如何让我的mac始终使用新版本的PHP?
注意: Symink不是我在El Capitan的选择。
〜/ .bashrc中:
export PATH=/usr/local/php5/bin:$PATH
export PATH=/usr/local/bin:$PATH
export PATH=$HOME/.composer/vendor/bin:$PATH
答案 0 :(得分:4)
您应该在Mac上使用~/.bash_profile
而不是~/.bashrc
文件。
如果source ~/.bash_profile
可以解决问题,则表示在您打开新终端时未提供该文件。如果您使用的是zsh
,则应将source ~/.bash_profile
添加到~/.zshrc
文件中。
但是,brew
是更好的选择。