无法运行PHPUnit

时间:2012-12-22 03:12:08

标签: php ubuntu phpunit pear

  

可能重复:
  How to install PEAR and PHPUnit?

我正在使用Ubuntu并尝试安装PHPUnit。我已经使用apt-get安装了PEAR,目前它安装在/ usr / lib / pear中。

为了安装PHPUnit,我运行了命令:

pear channel-discover pear.phpunit.de

已安装依赖项

pear channel-discover pear.symfony.com
pear install pear.symfony.com/Yaml

并安装了PHPUnit

pear install --alldeps pear.phpunit.de/PHPUnit

但我仍然无法在命令行中运行phpunit。我注意到/ home / username / pear上的pear目录里面有一个phpunit,但是如何将它添加到我的路径?感谢

2 个答案:

答案 0 :(得分:1)

我的猜测是你以普通用户身份运行pear命令:你必须以root身份运行它们,才能在系统范围内安装。 (即您在问题中写过pear的所有地方,请改为撰写sudo pear。)

(如果您故意不想在系统范围内安装它们,请编辑问题以便询问。)

答案 1 :(得分:0)

确保在测试中手动包含自动装带器。

require_once 'PHPUnit/Autoloader.php';