in reply to Unable to install Data::Dumper module
Data::Dumper is a part of Perl and should come installed with your Perl installation already. If your distributor did exclude it, you have to find what package they put it in instead. You can check whether you have Data::Dumper installed by running the following command:
perl -MData::Dumper -e 'print "Data::Dumper is installed"'
The error message indicates that your C compiler is a different C compiler (version) than what was used to compile Perl with - this likely means that you will encounter more problems when you try to install Perl modules with a C (or "XS") component.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Unable to install Data::Dumper module
by VGR (Acolyte) on Feb 16, 2010 at 10:41 UTC | |
by Corion (Patriarch) on Feb 16, 2010 at 10:44 UTC | |
by VGR (Acolyte) on Feb 16, 2010 at 12:03 UTC | |
by marto (Cardinal) on Feb 16, 2010 at 12:16 UTC | |
by ikegami (Patriarch) on Feb 16, 2010 at 15:45 UTC |