in reply to Re: Re: Installing Modules: Noob having problems
in thread Installing Modules: Noob having problems

Call me silly, but Data::Dumper should already be in your Red Hat supplied installation of Perl.

You can test whether you already have a module with a command like the following:

% perl -MData::Dumper -e1
It'll give an applicable error message, or no response for success. For a more inspiring test of this module, try:
% perl -MData::Dumper -e 'print Dumper {one=>1};'

--
[ e d @ h a l l e y . c c ]

Replies are listed 'Best First'.
Re: Re: Re: Re: Installing Modules: Noob having problems
by Anonymous Monk on May 09, 2003 at 14:01 UTC
    Thankyou very much Ed. I'll go away for now and digest the verbose output of that test.

    I like this place already, hopefully I'll be back with some more mature enquiries once I get my all the necessary modules installed and my code (chat server) is underway, I'm just waiting for my login details to come back too whereafter my login handle should be 'Prisoner 9'

    Thanks again for your prompt and very helpful resonse

    Andy