这是我到目前为止所尝试的内容:
> cd /Applications/MAMP/bin/php5/bin/
> ./pear channel-discover pear.phing.info
> ./pear install phing/phing
安装已运行。 我可以运行以下内容:
> ./pear/ info phing/phing
About pear.phing.info/phing-2.4.0
=================================
Release Type PEAR-style PHP-based Package
Name phing
如果我运行命令
>ls -al
未列出Phing。
您现在可以运行此命令:
> ./phing -h
-bash: ./phing: No such file or directory
> phing
-bash: phing: command not found
感谢您的帮助。
答案 0 :(得分:1)
也许是路径问题。尝试检查phing的位置:
locate phing
甚至,如果你有时间:
find / -name "phing"
然后,如果你找到它,你可以添加它的.profile文件的路径:
echo "export PATH=/path/to/phing/:$PATH" >> ~/.profile