M HYPE SPLASH
// general

Perl 5.20.1 for Ubuntu 14.04

By Andrew Adams

How to update to the latest perl in ubuntu 14.04 x64? Ive tried via apt and and cpan alredy and core wont update.

2 Answers

You can use perlbrew:

sudo apt-get install perlbrew

Then:

perlbrew init
perlbrew install perl-5.20.1

There will be no version upgrades for Perl (or most other packages) within a single Ubuntu version, because that might break existing code. Instead they will port essential fixes back to the version they ship.

If you want to have a newer version you can use perlbrew to install it, but this will not replace the Perl version shipped with Ubuntu, will not affect any installed scripts and will not use already installed modules.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy