venkatappa jv
venkatappa jv

Reputation: 81

Can't locate XML/LibXML.pm

I installed Strawberry Perl on my windows XP operating system. Later I tried to execute the .XML file but it's throwing error as below. I also tried Active Perl and also getting the same error.

I am running the following code in the command prompt:

C:> perl xcp_conf.pl FILENAME.xml

ERROR: can't locate XML/LibXML.pm in @INC contains: C:/Perl/site/Lib C:/perl/Lib at xcp_conf.pl

Could you please tell me where to download the above file? How to install that package?

Upvotes: 7

Views: 24803

Answers (3)

Mladen B.
Mladen B.

Reputation: 2996

You can also install it using CPAN: cpan XML::LibXML

Upvotes: 3

Andy
Andy

Reputation: 338

Please try it:

ppm install XML-LibXML

For more details: https://code.activestate.com/ppm/XML-LibXML/

Upvotes: 1

michael501
michael501

Reputation: 1482

try this :

perl -MCPAN -e shell
# at prompt type in :  install XML::LibXML

another way is to use ppm and select package you are interested.

Upvotes: 16

Related Questions