我正在尝试使用gitlist和wamp安装本地git存储库查看器。我对这些技术非常陌生,任何帮助都会非常有用!我遵循了下面的教程
但是它返回了一个错误!
USER@DESKTOP-C2RTCQF MINGW64 /c/wamp64/www/test(master)
$ curl -s http://getcomposer.org/installer | php
bash: php: command not found我做错了什么?
发布于 2018-11-17 18:33:39
您的路径中没有php。
文章提到这一点:
先决条件:如前所述,Apache - PHP5.3
请按照以下说明为您的系统安装它:
http://php.net/manual/en/install.php
验证路径中是否有php
# simply type php and see if there is an input
php
# check which php is your OS is using
# Where does the php execution located
which phphttps://stackoverflow.com/questions/53350343
复制相似问题