20

インストールの標準は次のとおりです。

$sudo cpanm XML::LibXML
--> Working on XML::LibXML
Fetching http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-2.0014.tar.gz ... OK
Configuring XML-LibXML-2.0014 ... N/A
! Configure failed for XML-LibXML-2.0014. See /home/kahmed/.cpanm/build.log for details.

詳細:

Unpacking XML-LibXML-2.0014.tar.gz
Entering XML-LibXML-2.0014
Checking configure dependencies from META.yml
Checking if you have ExtUtils::MakeMaker 0 ... Yes (6.55_02)
Configuring XML-LibXML-2.0014
Running Makefile.PL
enable native perl UTF8
running xml2-config...ok (2.9.0)
Checking for ability to link against xml2...no
Checking for ability to link against libxml2...libxml2, zlib, and/or the Math library (-lm) have not been found.
Try setting LIBS and INC values on the command line
Or get libxml2 from
  http://xmlsoft.org/
If you install via RPMs, make sure you also install the -devel
RPMs, as this is where the headers (.h files) are.

Also, you may try to run perl Makefile.PL with the DEBUG=1 parameter
to see the exact reason why the detection of libxml2 installation
failed or why Makefile.PL was not able to compile a test program.
-> N/A
-> FAIL Configure failed for XML-LibXML-2.0014. See /home/kahmed/.cpanm/build.log for details.

libxml2を手動でインストールしようとしましたが、それでも同じ問題が発生します。

また、libxml2-devを確認しました。

 sudo apt-get install libxml2-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libxml2-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 78 not upgraded.

これがシステム情報です:

 lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 11.04
Release:    11.04
Codename:   natty

uname -a Linux autobot 2.6.38-8-server#42-Ubuntu SMP Mon Apr 11 03:49:04 UTC 2011 x86_64 x86_64 x86_64 GNU / Linux

4

4 に答える 4

35

関連する行は次のとおりだと思います。

Checking for ability to link against libxml2...libxml2, zlib, and/or the Math library (-lm) have not been found.

これで、libxml はカバーされました。適切な zlib パッケージをインストールしましたか? 試す:

sudo apt-get install zlib1g-dev

次に、XML::LibXML を再度インストールしてみてください。

于 2012-12-20T04:34:21.663 に答える
26

とにかく、なぜこれに CPAN を使用したいのですか? 標準のオペレーティング システム インストーラーによってネイティブ パッケージが提供されている場合、CPAN パッケージをインストールすることは通常、非常に悪い考えです。

Ubuntu は多くの Perl パッケージをネイティブで提供しており、命名規則は次のとおりです。パッケージ名は常に で始まりlib、Perl パッケージ名 likeXML::LibXMLは小文字に変換され::てダッシュ-( XML::LibXML=> xml-libxml) に置き換えられ、最後に-perlサフィックスが追加されます。つまり、 のネイティブ パッケージ名XML::LibXMLlibxml-libxml-perl.

したがって、あなたの場合、このコマンドを実行するだけで、必要なすべての依存関係が自動的にプルされます。

sudo apt-get install libxml-libxml-perl

何らかの理由でこのパッケージが気に入らない場合は、 でアンインストールできますsudo apt-get remove。CPAN を使用している場合、確実にアンインストールすることは非常に困難です。

于 2012-12-20T05:12:18.740 に答える
4

明らかなことを見落としました:

sudo apt-get install --reinstall zlibc zlib1g zlib1g-dev

それから:

sudo cpanm XML::LibXML

動作します!

于 2012-12-20T04:33:44.487 に答える