1

我的机器上有 perl 版本 5.008003。我正在尝试使用 CPAN 安装 XML::Twig,但由于以下错误而失败。任何人都可以帮忙。

t/xmlxpath_22name_select............ok
t/xmlxpath_23func...................cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_23func...................ok
t/xmlxpath_24namespaces.............cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_24namespaces.............ok
t/xmlxpath_25scope..................cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_25scope..................ok
t/xmlxpath_26predicate..............cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_26predicate..............ok
t/xmlxpath_28ancestor2..............cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_28ancestor2..............ok
t/xmlxpath_29desc_with_predicate....cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_29desc_with_predicate....ok
t/xmlxpath_30lang...................cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_30lang...................ok
t/xmlxpath_additional...............cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_additional...............ok
t/xmlxpath_nav......................cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_nav......................ok
t/xmlxpath_test1....................cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_test1....................ok
t/xmlxpath_test_twig_roots..........cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_test_twig_roots..........ok
t/xmlxpath_test_with_handlers.......cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_test_with_handlers.......ok
t/xmlxpath_xpath_cond...............cannot use XML::Twig::XPath: neither XML::XP
athEngine 0.09+ nor XML::XPath are available
t/xmlxpath_xpath_cond...............ok
t/zz_dump_config....................

Configuration:

perl: 5.008003
OS: MSWin32 - MSWin32
required
  XML::Parser              :             2.34
'xmlwf' is not recognized as an internal or external command,
operable program or batch file.
Use of uninitialized value in sprintf at t/zz_dump_config.t line 113.
  expat                    : <no version information found>
Strongly Recommended
  Scalar::Util             :             1.13 (for improved memory management)
  Encode                   :             1.99 (for encoding conversions)
Modules providing additional features
  XML::XPathEngine         :  <not available> (to use XML::Twig::XPath)
  XML::XPath               :  <not available> (to use XML::Twig::XPath if Tree::
XPathEngine not available)
  LWP                      :             5.75 (for the parseurl method)
  HTML::TreeBuilder        :             3.13 (to use parse_html and parsefile_h
tml)
  HTML::Entities::Numbered :  <not available> (to allow parsing of HTML containi
ng named entities)
  HTML::Tidy               :  <not available> (to use parse_html and parsefile_h
tml with the use_tidy option)
  HTML::Entities           :             1.27 (for the html_encode filter)
  Tie::IxHash              :  <not available> (for the keep_atts_order option)
  Text::Wrap               :       2001.09291 (to use the "wrapped" option for p
retty_print)
Modules used only by the auto tests
  Test                     :             1.24
  Test::Pod                :  <not available>
  XML::Simple              :             2.09
  XML::Handler::YAWriter   :  <not available>
  XML::SAX::Writer         :  <not available>
  XML::Filter::BufferText  :             1.01
  IO::Scalar               :  <not available>


Please add this information to bug reports (you can run t\zz_dump_config.t to ge
t it)

if you are upgrading the module from a previous version, make sure you read the
Changes file for bug fixes, new features and the occasional COMPATIBILITY WARNIN
G

t/zz_dump_config....................ok
Failed Test   Stat Wstat Total Fail  Failed  List of Failed
-------------------------------------------------------------------------------
t/test_3_36.t               67    1   1.49%  43
Failed 1/96 test scripts, 98.96% okay. 1/2374 subtests failed, 99.96% okay.
NMAKE : fatal error U1077: 'C:\WINNT\system32\cmd.exe' : return code '0xff'
Stop.
  NMAKE test -- NOT OK
Running make install
  make test had returned bad status, won't install without force

cpan>

我所有的环境都有这个版本的 perl,所以我无法升级到最新版本。我只能解决这个版本的问题。

谢谢,

4

1 回答 1

2

根据测试摘要,失败的似乎是 t/test_3_36.t 中的测试 43。如果你看它,它会测试 HTML::TreeBuilder&Amp;在解析 HTML 时如何处理(注意大写的 A)。取决于 HTML::TreeBuilder 的版本,&Amp; 可以处理为&amp;,实体为&。看来,在您的机器上安装的版本(3.13)中,它被(正确地)处理为&Amp;测试没有预料到的文字。

HTML::TreeBuilder 在使用 XML::Twig 解析 HTML 时使用。您也可以改用 HTML::Tidy(您需要安装它)。

这个问题是否重要到让你不安装模块,我不知道,你必须应用你最好的判断。

正如 ikegami 提到的,您在问题中给出的输出不是最佳的。没有必要复制所有警告(警告很多,我可能会显示较少的警告,但由于我希望他们鼓励用户安装 XML::XPathEngine,所以我将保持输出不变)。

于 2012-01-18T07:50:36.900 回答