Gossamer Forum
Home : General : Perl Programming :

Installing Modules without root permission

Quote Reply
Installing Modules without root permission
Hi folks,

I just found something which solves a lot of my problems with my dedicated server.
Maybe you know I did not until now - you can install modules on your server without having root access:

Code:
perl Makefile.PL LIB=/home/path/perl_modules
make
make test
make install





Regards

n || i || k || o

Last edited by:

el noe: Mar 18, 2006, 8:56 AM
Quote Reply
Re: [el noe] Installing Modules without root permission In reply to
Make sure that wherever you have your modules is in @INC. Otherwise, you'll have to 'use lib "/wherever/blah";' to search there for modules.