in reply to Re: Problem with my CPAN module
in thread Problem with my CPAN module

That is just what was defaulted to in my Mac, would it be possible just to change this or would i have to just redo the entire configuration? If this is required then I would also do the next suggestion of just using the built in perl modules

Replies are listed 'Best First'.
Re^3: Problem with my CPAN module
by Corion (Patriarch) on Jun 28, 2010 at 13:00 UTC

    The easiest way to reconfigure just one thing is to know its name and to change that from within cpan:

    cpan> o conf foo bar

    The conf command lists all configuration items:

    cpan> o conf

    If you don't find things there, another way is to edit CPAN/Config.pm and to change the values there.

Re^3: Problem with my CPAN module
by Fletch (Bishop) on Jun 28, 2010 at 16:51 UTC

    As a somewhat related aside some advice:

    If you're going to be heavily using stuff from CPAN you probably will save yourself headaches in the long run if you install a separate copy of perl yourself somewhere else (e.g. under /usr/local from source, or by using macports) and install things from CPAN into that copy instead. That way n months down the road when Apple pushes a software update that diddles the OS' perl install you're not spending time trying to figure out why module X suddenly is rolled back to the "latest" version from 3 months back.

    The cake is a lie.
    The cake is a lie.
    The cake is a lie.

      Thank you for that suggestion, I do have macports installed on my Mac but never thought of install Perl from it. I'm sure macports will have a newer version than 5.8.9 anyways.