Perl安裝模組方式

2021-07-23 16:32:07 字數 1331 閱讀 8287

一、通過專用的模組安裝模組來安裝模組

優點是可以解決依賴問題,

有三個模組,分別是cpan,cpanp,cpanm.

1. cpan模組。

cpan是乙個重量級選手。

redhat下安裝cpan模組: yum install perl-cpan

cpan可以通過兩個方式安裝模組:

直接安裝

# cpan lwp

通過cpan shell 

$ perl -mcpan -e shell         // 或

$ cpan                         // 進入cpan shell

安裝模組:

cpan> install poe

2. cpanp模組

cpanp是指cpanplus,perl 5.10中包含了cpanm shell.

# cpanp         

進入cpanp shell介面

cpan terminal> i lwp   

安裝lwp模組

3.cpanm模組

cpanm是cpanminus,輕量級的cpan,無shell

安裝cpanm:

$ wget -o-  --no-check-certificate | perl - --sudo --self-upgrade

使用cpanm安裝模組

$ cpanm poe

強制安裝:

$ cpanm poe --force

二、手工安裝: 

cd /usr/local/src 

解壓縮這個檔案: 

tar xvzf dbi-1.13.tar.gz 

這時會新建乙個dbi-1.13的目錄。 

cd dbi-1.13 

生成makefile: 

perl makefile.pl 

建立模組 

make 

測試模組 

make test 

如果測試結果報告「all test ok」,您就可以放心地安裝編譯好的模組了。安裝模組前,先要 

確保您對perl5安裝目錄有可寫許可權(通常以su命令獲得),執行: 

make install 

該手工步驟適合於linux/unix下絕大多數的perl模組。可能還有少數模組的安裝方法略有差別,所以最好先看看安裝目錄裡的readme或install。另外,上述過程是針對動態鏈結的perl編譯器(所有linux下預安裝的perl都是動態鏈結的),如果您在使用乙個靜態鏈結的perl,您需要將新的模組靜態鏈結到perl編譯器中,可能還需要重啟機器。

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 正則...

perl 簡單學習,安裝perl模組

檢查是否安裝了某個perl模組 有多種方式 0.perldoc perlinstall 列出所有的模組及版本號 1.perl m模組名 e 1 模組名不加空格 沒有返回值則說明有此模組 2.perl e use dbd oracle print dbd oracle version n window...

安裝perl模組 Linux

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