1

在操作系统上的无效包名称/包文件“pear.phpunit.de/PHPUnit”中安装PHPUnit未知通道时出错。pear.phpunit.depear.phpunit.de/PHPUnitDebian-4

我已按照http://phpunit.de/manual/3.7/en/installation.html中包含的说明进行操作,并且我尝试了PHAR方法和PEAR方法,但都没有工作。

这是服务器设置:

PEAR Version: 1.9.4

PHP Version: 5.4.4-14+deb7u3

Zend Engine Version: 2.4.0

Running on: Linux lsh1001 3.9.6-hw+ #6 SMP

当我尝试使用该PEAR方法安装时,我运行:

pear config-set auto_discover 1

我收到

config-set succeeded

但是,当我跑步时

pear install pear.phpunit.de/PHPUnit

我收到:

Attempting to discover channel "pear.phpunit.de"...
downloading channel.xml ...
Starting to download channel.xml (804 bytes)
....done: 804 bytes
Auto-discovered channel "pear.phpunit.de", alias "pear.phpunit.de", adding to registry
unknown channel "pear.phpunit.de" in "pear.phpunit.de/PHPUnit"
invalid package name/package file "pear.phpunit.de/PHPUnit"
install failed

我是使用命令行提示符的新手,所以我可能会做一些奇怪的事情。我尝试在代码行前面加上sudo,但我收到:

-bash: sudo: command not found

当我这样做时。

我希望能够PHPUnit使用浏览器前端而不是命令行安装来运行。我也尝试了PHAR安装方法,但我不确定如何指向已安装的phpunit.phar文件。我可以phpunit.phar直接从命令行运行该文件,但我将如何在我的php.ini文件中引用它?我已将文件留在我的根目录中并且没有移动它。

4

1 回答 1

4

试试这个命令流程

pear channel-discover pear.phpunit.de

pear install phpunit/PHPUnit

并且...如果你被root忽略sudo

参考 PHPUnit 网站

于 2013-09-04T01:41:55.550 回答