xiaoming728

xiaoming728

CentOS7下安装Perl编程环境

2023-12-11
CentOS7下安装Perl编程环境

安装Perl

安装方式一:如果环境能够联网的话,一个命令基本上就搞定了。

# yum install perl*

安装方式二:如果不能联网,可以下载最新的源码包进行编译安装。

# wget http://www.cpan.org/src/5.0/perl-5.24.1.tar.gz
# tar -xzf perl-5.24.1.tar.gz
# cd perl-5.24.1
# ./Configure -des -Dprefix=$HOME/localperl
# make
# make test
# make install

查看安装成功的Perl版本:

[root@controller ~]# perl -v

This is perl 5, version 16, subversion 3 (v5.16.3) built for x86_64-linux-thread-multi
(with 34 registered patches, see perl -V for more detail)

Copyright 1987-2012, Larry Wall

Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.

Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl". If you have access to the
Internet, point your browser at http://www.perl.org/, the Perl Home Page.