不建议先rm 先下载tar.gz ...然後手动安装..default 安装到/usr/local/目录下.. 然後修改/usr/bin/perl的symbolic link到/usr/local/bin/perl 本机的系统为centos4.5.想体验一下最新版本 下载地址: [url]http://www.cpan.org/src/README.html[/url] 下载链接: [url]http://www.cpan.org/src/perl-5.10.0.tar.gz[/url] 下载方式不用说了吧,各显神通,笔者习惯用wget.所以wget[url]http://www.cpan.org/src/perl-5.10.0.tar.gz[/url] . 下载完以后解压安装 #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 ArtisticLicense or the GNU General Public License, which may be found in the Perl 5 sourcekit. Complete documentation for Perl, including FAQ lists, should befound on this system using "man perl" or "perldoc perl". If you have accessto the Internet, point your browser at [url]http://www.perl.org/[/url],the Perl Home Page. 恩,如果你那执行perl -v 和我的提示一样的话.就是安装成功了 然后就可以了用它来安装一些其它你需要的perl模块了 #perl -MCPAN-e shell 第一次执行的话,会提示安装cpan并要求连接网络下载最新的模块列表.然后就可以安装东西了 cpan[1]> install DBI 是不是很简单呢 现在问题来了,怎么卸载啊,试过 make uninstall,不管用啊
|
请发表评论