http://www.perlmonks.org?node_id=1035287

Cody Fendant has asked for the wisdom of the Perl Monks concerning the following question:

I'm struggling to install code on a server with an old Perl and no root access.

I go to install HTML::Template -- I can't because it requires a newer version of ExtUtils::MakeMaker. So I update ExtUtils::MakeMaker in a local modules folder.

So now I need to run the cpan prompt again and tell it where the never version of MakeMaker is. How do I do that?

Replies are listed 'Best First'.
Re: How do I tell CPAN to use a local lib?
by frozenwithjoy (Priest) on May 26, 2013 at 03:08 UTC
Re: How do I tell CPAN to use a local lib? ()
by Anonymous Monk on May 26, 2013 at 02:43 UTC
      PERL5LIB trumps PERLLIB
      -Idirectory trumps PERL5LIB
      -Mblib trumps PERL5LIB/PERLLIB/-I
      PERL5OPT=-Mlib=shecky trumps -Mblib/PERL5LIB/PERLLIB/-I
      and they all trump sitecustomize.pl (sitecustomize processed before they are)

      PERL5LIB TRUMPS PERLLIB, -I trumps PERL5LIB, -Mblib TRUMPS PERL5LIB/PERLLIB/-I, PERL5OPT=-Mlib=shecky trumps -Mblib/PERL5LIB/PERLLIB/-I and they all trump sitecustomize.pl