Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 338
venkatappa jv Avatar asked Oct 10 '13 17:10

venkatappa jv


2 Answers

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.

like image 101
michael501 Avatar answered Sep 21 '22 17:09

michael501


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

like image 39
Mladen B. Avatar answered Sep 19 '22 17:09

Mladen B.