Steven's Blog

A Dream Land of Peace!

centOS上源码安装Perl

Following the following steps to install perl in the local directory on your machine.

1
2
3
4
5
6
tar -xzf perl-5.10.1.tar.gz
cd perl-5.10.1
./Configure -des -Dprefix=$HOME/local
make
make test
make install