Re: how to tell perl to look for where a new module is installed

2006-04-15 Thread Jay Savage
On 4/14/06, Randy W. Sims <[EMAIL PROTECTED]> wrote: > chen li wrote: > > Hi all, > > > > Thank you all for reply my post in advance. > > > > I install in new module like this: > > c:/perl/local/new.pm. > > > > How should tell the perl to look at it in addition to > > the default paths? > > Set the

Re: how to tell perl to look for where a new module is installed

2006-04-14 Thread chen li
--- "Randy W. Sims" <[EMAIL PROTECTED]> wrote: > chen li wrote: > > Hi all, > > > > Thank you all for reply my post in advance. > > > > I install in new module like this: > > c:/perl/local/new.pm. > > > > How should tell the perl to look at it in addition > to > > the default paths? > > Set

Re: how to tell perl to look for where a new module is installed

2006-04-14 Thread Randy W. Sims
chen li wrote: Hi all, Thank you all for reply my post in advance. I install in new module like this: c:/perl/local/new.pm. How should tell the perl to look at it in addition to the default paths? Set the environment variable PERL5LIB to the additional paths. On the command line: `set PERL

Re: how to tell perl to look for where a new module is installed

2006-04-14 Thread Jay Savage
Please don't top post. On 4/14/06, chen li <[EMAIL PROTECTED]> wrote: > Hi Timothy, > > Under windows XP I recall perl interpreter look for > the default paths > > C:/Perl/lib > C:/Perl/site/lib > > What I try to say is that how I add something to the > @INC of perl so that it also looks for anoth

RE: how to tell perl to look for where a new module is installed

2006-04-14 Thread chen li
> use lib 'stuff/moo';" > > > > -Original Message- > From: chen li [mailto:[EMAIL PROTECTED] > Sent: Friday, April 14, 2006 3:15 PM > To: Timothy Johnson > Subject: RE: how to tell perl to look for where a > new module is > install

RE: how to tell perl to look for where a new module is installed

2006-04-14 Thread Timothy Johnson
e paths to Unix conventions. # VMS users wanting to put [.stuff.moo] into # their @INC would write use lib 'stuff/moo';" -Original Message- From: chen li [mailto:[EMAIL PROTECTED] Sent: Friday, April 14, 2006 3:15 PM To: Timothy Johnson Subject: RE: how to

RE: how to tell perl to look for where a new module is installed

2006-04-14 Thread Wagner, David --- Senior Programmer Analyst --- WGO
chen li wrote: > Hi all, > > Thank you all for reply my post in advance. > > I install in new module like this: > c:/perl/local/new.pm. I believe you don't, but you need to check your doc how where the new pm's should go as part of installing and there becomes no need to tell Perl where

RE: how to tell perl to look for where a new module is installed

2006-04-14 Thread Timothy Johnson
perldoc lib -Original Message- From: chen li [mailto:[EMAIL PROTECTED] Sent: Friday, April 14, 2006 2:40 PM To: beginners@perl.org Subject: how to tell perl to look for where a new module is installed I install in new module like this: c:/perl/local/new.pm. How should tell the perl