centos 安装perl环境

前端之家收集整理的这篇文章主要介绍了centos 安装perl环境前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


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

猜你在找的CentOS相关文章