in reply to Re^2: Unable to install Data::Dumper module
in thread Unable to install Data::Dumper module

You're trying to use Data::Dupmer, but the module name is Data::Dumper.

  • Comment on Re^3: Unable to install Data::Dumper module

Replies are listed 'Best First'.
Re^4: Unable to install Data::Dumper module
by VGR (Acolyte) on Feb 16, 2010 at 12:03 UTC
    i just hate typos
    i ran it again and this is what i got!
    $ perl ex1.pl could not find ParserDetails.ini in /usr/lib/perl5/vendor_perl/5.10/XM +L/SAX Document requires an element [Ln: 2, Col: 0]
    Im not sure why it's looking at SAX

      XML::Simple relies on other XML parsers. It can use XML::Parser or one of many SAX parsers. XML::Simple is at its fastest when it uses XML::Parser, so you should install XML::Parser and set

      $XML::Simple::PREFERRED_PARSER = 'XML::Parser';
      to make sure XML::Simple will use it.