centos 系统下perl环境的安装主要分为三个部分:perl 支持、perl、编译安装
1.安装perl支持
yum install perl* (yum安装perl相关支持)
yum install cpan (perl需要的程序库,需要cpan的支持,详细自行百度)
2.下载perl并安装
wgethttp://www.cpan.org/src/5.0/perl-5.16.1.tar.gz
tar -zxvf perl-5.16.1.tar.gz
./Configure -des -Dprefix=/usr/local/perl
3.编译安装
make
make test
make install
注意事项
一个干净的centos系统是没有相关支持的,以至于在操作过程中会出现各类异常,像是编译,像是wget command not found等,整个make的过程是时间非常长的,需要耐心等待。
问题1:wget不被识别
yum install wget
问题2:make命令不被识别
yum install gccreboot再次makeperl -v
原文链接:https://www.f2er.com/centos/375865.html