linux下編譯安裝perl(5.10.0)

perfychi發表於2013-01-02

       下載地址:
           
   
     
       下載完以後解壓安裝
       #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 [url][/url], the Perl Home Page.

如果執行perl -v 和我的提示一樣的話.就是安裝成功了
       然後就可以了用它來安裝一些其它你需要的perl模組了
       #perl -MCPAN -e shell
       第一次執行的話,會提示安裝cpan並要求連線網路下載最新的模組列表.然後就可以安裝東西了
       cpan[1]> install DBI
       

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27042095/viewspace-752000/,如需轉載,請註明出處,否則將追究法律責任。

相關文章