in reply to (jeffa) Re: Perl Modules vs generalization
in thread Perl Modules vs generalization

It's not necessary to have root access in order to install a module. You can install modules in any directory you like as long as you have read/write permissions. All that's required is to supply the proper PREFIX value to make at build time. You may then use:

use lib 'mydir';

to add the install directory to @INC.

Update:

Added 'use'. I knew I should have taken the day off. Thank you, merlyn.