perl 模組安裝方法和常用模組

2021-06-16 05:35:49 字數 1865 閱讀 9178

cpan(comprehensive perl archive network)是internet上perl模組最大的集散地,包含了現今公布的幾乎所有的perl模組。**:

linux/unix---perl模組的安裝方法

a.       手工安裝

# cd /usr/local/src      

# tar xvzf x.x.tar.gz      

# cd x.x     

# perl makefile.pl (生成makefile)   

# make #(建立模組)&& make test (測試模組)  如果測試結果報告「all test ok」,您就可以放心地安裝編譯好的模組了。  

# make install  

注意:上述步驟適合於linux/unix下絕大多數的perl模組。可能還有少數模組的安裝方法略有差別,安裝前,先看一下目錄裡的readme或install。

b.       自動安裝:常用模組:

了解這些模組功能以及具體使用方法,可以去 檢視。

perl安裝模組

1.cpan perl mcpan e shell o conf init 可以初始化cpan vi usr lib perl5 5.8.8 cpan config.pm 更改cpan配置主要是映象的配置 163映象 urllist q install net netmask 就自動安裝了 m 正則...

Linux中Perl模組安裝方法

於 重要參考 cpan comprehensive perl archive network 是internet上perl模組最大的集散地,包含了現今公布的幾乎所有的perl模組。linux unix perl模組的安裝方法 a.手工安裝 cd usr local src tar xvzf x.x....

安裝perl模組 Linux

介紹一下各種平台下perl模組的安裝方法。以安裝dbi模組為例。linux unix下的安裝方法 a 手工安裝的步驟 生成makefile perl makefile.pl 建立模組 make 測試模組 make test 如果測試結果報告 all test ok 您就可以放心地安裝編譯好的模組了。...