Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PERL update 1

Status
Not open for further replies.

boxwrench

Technical User
Jun 6, 2005
1
US
Hello All,

Can anybody point me to a tutorial that would explain to a newbie how to update my version of perl on my server?

I'm at 5.8.3 right now and would like to get up to a current version. I will do all of this via SSH from my local machine.

Is it possible to use up2date and/or the CPAN shell?
How does that all work?

Thanks for any help.
-BoxWrench
 
at the command line, do

Code:
perl -MCPAN -e "shell"

that will bring you to a cpan shell. There, do

Code:
cpan> install Perl
 
Wow, didn't know cpan could do that. I was going to suggest using whatever package management system is native on the server and likely installed your existing version of perl.

________________________________________
Andrew
 
I didn't know that either...

Mike

You cannot really appreciate Dilbert unless you've read it in the
original Klingon.

Want great answers to your Tek-Tips questions? Have a look at faq219-2884

 
I haven't run anything, but from looking around, "Perl" is the name PerlInterp goes by on CPAN, so "install Perl" looks like it'd give you that. You could probably use a specific version and get the bundle/distribution made for it, like perl-5.8.7. Still kind of neat.

________________________________________
Andrew
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top