della0887 发表于 2018-9-1 09:56:34

linux下编译安装perl(5.10.0)

本机的系统为centos4.5.想体验一下最新版本  下载地址:
  http://www.cpan.org/src/README.html
  下载链接:
  http://www.cpan.org/src/perl-5.10.0.tar.gz
  下载方式不用说了吧,各显神通,笔者习惯用wget.所以wget http://www.cpan.org/src/perl-5.10.0.tar.gz .
  下载完以后解压安装
  #tar zxvf perl-5.10.0.tar.gz
  #cd perl-5.10.0
  #./Configure -des -Dprefix=/usr/local/perl
  参数-Dprefix指定安装目录为/usr/local/perl
  #make
  #make test
  #make install
  如果这个过程没有错误的话,那么恭喜你安装完成了.是不是很简单?
  接下来替换系统原有的perl,有最新的了咱就用嘛.
  #mv /usr/bin/perl /usr/bin/perl.bak
  #ln -s /usr/local/perl/bin/perl /usr/bin/perl
  #perl -v
  This is perl, v5.10.0 built for i686-linux
  Copyright 1987-2007, 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.
  恩,如果你那执行perl -v 和我的提示一样的话.就是安装成功了
  然后就可以了用它来安装一些其它你需要的perl模块了
  #perl -MCPAN -e shell
  第一次执行的话,会提示安装cpan并要求连接网络下载最新的模块列表.然后就可以安装东西了
  cpan> install DBI
  是不是很简单呢.

页: [1]
查看完整版本: linux下编译安装perl(5.10.0)