This is a step by step installation of Perl 5.16 on Linux CentOS 6. Note:
tar -xf perl-5.16.0.tar
cd perl-5.16.0
yum -y install make
yum -y install gcc
./Configure -des -Dprefix=/opt/perl5/perls/perl5.16
make
make test
make install
rm /usr/bin/perl
ln -s /opt/perl5/perls/perl5.16/bin/perl /usr/bin/perl
perl -v
This is perl 5, version 16, subversion 0 (v5.16.0) built for x86_64-Linux
Copyright 1987-2012, Larry Wall
wget -O - http://install.perlbrew.pl | bash
source ~/perl5/perlbrew/etc/bashrc
perlbrew install-cpanm
perldoc time::piece
perlbrew install-cpanm
cpanm -v DBI
cpanm -v DBD::ODBC
cpanm -v YAML
cpanm -v Time::Piece
cpanm -v Crypt::TripleDES