"Prachi Shah" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi,
>
> I have been using perl on Win32 ssytems so far but now am switching to
Unix.
> But, I do not have root permissins on the machine I am using and I am
> installing modules in my home directory. I use the PREFIX with the
perl
> Makefile.pl command and everything installs fine. So far so good. But,
how
> do I use these modules which reside on a path not in @INC?
> In other words, is there a way to specify the location of the module
in the
> programs like, maybe somewhere in the "use" statement?
> Thanks for all the help.

Hi Prachi.

Take a look at:

    perldoc lib

Essentially you can add:

    use lib '/path/to/firstlib', 'path/to/secondlib';

before the 'use' for the new modules.

HTH,

Rob





-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to