在CentOS 7上,我安装了
PHP 7.1.
然后我安装了作曲家:
cd /tmp
curl -sS https://getcomposer.org/installer | PHP71 --> used PHP71 instead of PHP,PHP didn't work
mv composer.phar /usr/local/bin/composer
然后,当使用作曲家时,我得到:
/usr/bin/env: PHP: No such file or directory
使用sudo作曲家时,我得到:
sudo: composer: command not found
正如@alexhowansky建议的那样,我运行了以下命令:
sudo ln -s /usr/bin/PHP71 /usr/bin/PHP
现在composer命令工作.谢谢
原文链接:https://www.f2er.com/php/133561.html