in reply to Re^2: RFC (tutorial): "Vendor code, Your code", PERL5LIB
in thread RFC (tutorial): "Vendor code, Your code", PERL5LIB

The easiest is to recompile perl to different locations. For example:
# extract perl distribution and then: sh configure.gnu --prefix=/usr/perl5.10.0 make all test && sudo make install

Replies are listed 'Best First'.
Re^4: RFC (tutorial): "Vendor code, Your code", PERL5LIB
by parv (Parson) on Dec 06, 2007 at 21:47 UTC

    While installing a Perl module in my home directory, I initially specified "--prefix", instead of "PREFIX", which of course tried to install things outside of the home directory. I tried that once more ending with the same problem. Error of my memory was corrected by reading one of INSTALL or README files.

    Needless to say, that was result of being more in touch with configure scripts (as a user) than with module installations. Also, I should have read INSTALL & README even if I have installed Perl modules many times.