在 Ubuntu 14.04 上安装 phpDocumentor 时出错

在 Ubuntu 14.04 上安装 phpDocumentor 时出错

我正在尝试按照phpDocumentor2 GitHub 仓库。我正在使用带有 Lubuntu 桌面的 Ubuntu 14.04 (trusty)。

第 2 步sudo pear install phpdoc/phpDocumentor出现以下错误:

could not extract the package.xml file from "/build/buildd/php5-5.5.9+dfsg/pear-build-download/phpDocumentor-2.8.2.tgz"
Download of "phpdoc/phpDocumentor" succeeded, but it is not a valid package archive
Error: cannot download "phpdoc/phpDocumentor"
Download failed
install failed

可能出了什么问题?

答案1

实际上,使用 pear 解压可下载内容时存在错误。要解决此问题,请使用--nocompress后的选项install

尝试这个:

sudo pear install --nocompress phpdoc/phpDocumentor

另一个网站建议直接提取下载的 pear 文件并运行upgrade提取的结果。参见这里了解更多详情。

笔记:

这将下载 phpDocumentor 未压缩的源代码(约 67 MBytes)

来源:

https://bugs.php.net/bug.php?id=67075

相关内容