In article <[EMAIL PROTECTED]>,
 [EMAIL PROTECTED] (Gary Stainburn) wrote:

> Hi all, I'm trying to install RT2 - perl helpdesk suite, but it depends on a 
> load of modules which it will automaticall install using CPAN (I believe) as 
> part of the install script.  Is it possible to tell CPAN *not* to upgrade 
> perl in the progress.
> 
> In the past, if I've let CPAN install a bundle for just about anything, it's 
> also gone and tried to upgrade perl first which to put it bluntly shafts my 
> box.  I would like to avoid this while still making use of CPAN.

first try 

    install CPAN

not 

    install Bundle::CPAN

that should get you to around 1.59 version of CPAN.pm

I *believe* it's possible to 

    force install XY::Z

where XY::Z is some module name that you are trying to install, and 
where that is the direct path to the module's own directory under the 
author name

to find that, you can match the module name with a regex, while using 
the i command to search for any information about the module 

    i /^LWP::/

will search CPAN for all modules that begin with LWP:: for example, and 
then you can take the full path to the module name from the returned 
list. 

write back if you need further info.

print pack "H*", "4a75737420416e6f74686572204d61635065726c204861636b65722c0d";
-- 
Scott R. Godin            | e-mail : [EMAIL PROTECTED]
Laughing Dragon Services  |    web : http://www.webdragon.net/
It is not necessary to cc: me via e-mail unless you mean to speak off-group.
I read these via nntp.perl.org, so as to get the stuff OUT of my mailbox. :-)

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

Reply via email to