in reply to Re^4: Unable to install Data::Dumper module
in thread Unable to install Data::Dumper module
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
to make sure XML::Simple will use it.$XML::Simple::PREFERRED_PARSER = 'XML::Parser';
|
|---|