in reply to Personal library with CPAN

I believe if you do:

perl Makefile.PL PREFIX=/home/username

then
make install
The package will be installed starting at /home/username rather than the standard location.

Replies are listed 'Best First'.
Re^2: Personal library with CPAN
by eserte (Deacon) on Jun 07, 2004 at 14:45 UTC
    PERL5LIB should be also adjusted:
    env PERL5LIB=/home/username/lib/perl perl Makefile.PL PREFIX=/home/use +rname
    (not sure about the exact PERL5LIB value, might be something with perl5 instead).