PaulLian
PaulLian

Reputation: 307

XML Parser perl module is needed

I'm trying to install intltool on Debian (Raspberry Pi). When running

  ./configure

The system always come back with the error:

checking for XML::Parser... configure: error: XML::Parser perl module is required for intltool

But I do have the latest version libxml and libxml-libxml-perl installed.

Can anyone help me interpret what is missing here?

Thank you! Paul

Upvotes: 2

Views: 3762

Answers (1)

Adlair Cerecedo-Mendez
Adlair Cerecedo-Mendez

Reputation: 251

You need to install XML::Parser::Style::Tree module. Try with cpanm

cpanm XML::Parser::Style::Tree

Or using CPAN Shell

perl -MCPAN -e shell
install XML::Parser::Style::Tree

After that, the module will be installed and XML::Parser will work well.

Upvotes: 4

Related Questions