[精讚] [會員登入]
492

[Linux] 使用tarball安裝下載PERL的tar檔模組

在Linux下,perl下載的pm模組,不使用cpan的安裝方法

分享此文連結 //n.sfs.tw/16049

分享連結 [Linux] 使用tarball安裝下載PERL的tar檔模組@新精讚
(文章歡迎轉載,務必尊重版權註明連結來源)
2023-01-11 01:22:00 最後編修
2023-01-10 16:36:43 By 張○○
 

自動目錄

有時用 cpan安裝失敗,或許可以採用改用tarball安裝,perl的模組tarball可以去metacpan找

 

1. 下載及解壓tar檔

以實際例子舉例,例如執行某 perl檔時發生以下錯誤:

Can't locate Text/Iconv.pm in @INC (you may need to install the Text::Iconv module) (@INC contains: …)

可以發現Text/Iconv模組不存在,因此到 metacpan的網站,貼上Text/Iconv並搜尋。

清單可能會找到很多的目標,選擇 Text::Iconv 這種多半就是套件本身。

點進去後,左側 Download 下方複製連結網址

並到系統中下載即可

解壓

$ tar zxvf Text-Iconv-1.7.tar.gz

 

 

2. 安裝

進到解壓後的目錄,因為安裝會動到系統目錄,用root權限執行

# cd Text-Iconv-1.7

# perl Makefile.PL

上面的指令如果沒安裝cpan模組的話會出錯,請參看下面錯誤排除

# make

# make install

"/usr/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- Iconv.bs blib/arch/auto/Text/Iconv/Iconv.bs 644
Manifying 1 pod document
Files found in blib/arch: installing files in blib/lib into architecture dependent library tree
Installing /usr/local/lib64/perl5/5.32/auto/Text/Iconv/Iconv.so
Installing /usr/local/lib64/perl5/5.32/Text/Iconv.pm
Installing /usr/local/lib64/perl5/5.32/auto/Text/Iconv/autosplit.ix
Installing /usr/local/share/man/man3/Text::Iconv.3pm
Appending installation info to /usr/lib64/perl5/perllocal.pod

 

錯誤排除

1. 下指令 perl Makefile.PL 出現錯誤 Can't locate ExtUtils/MakeMaker.pm in @INC (you may need to install the ExtUtils::MakeMaker module)

解決[1]:

# yum install perl-CPAN

2. make 出現 -bash: make: command not found

解決:

# yum install gcc

3. Can't locate IO/Socket/INET6.pm in @INC (you may need to install the IO::Socket::INET6 module)

解決:

[Centos]

# yum install perl-IO-Socket-INET6 perl-Socket6

[Ubuntu]

# apt-get install -y libio-socket-inet6-perl

4. Can't locate Net/DNS.pm in @INC (you may need to install the Net::DNS module)

解決:

[Centos]

# dnf install perl-Net-DNS

[Ubuntu]

# apt-get install -y libnet-dns-perl

5. Can't locate Text/Iconv.pm in @INC (you may need to install the Text::Iconv module)

[Centos]

上方tarball安裝

[Ubuntu]

# apt-get install libtext-iconv-perl

參考資料

[1] https://blog.xuite.net/tailsice/twblog/204924951-%E7%B7%A8%E8%AD%AF%E5%AE%89%E8%A3%9D%E6%99%82%E5%87%BA%E7%8F%BECan%27t+locate+ExtUtils%2FMakeMaker.pm#

[2] https://zoomadmin.com/HowToInstall/UbuntuPackage/libnet-dns-perl

[3] https://www.devmanuals.net/install/ubuntu/ubuntu-12-04-lts-precise-pangolin/install-libtext-iconv-perl.html

END

你可能感興趣的文章

[Centos] Linux mount 掛載檔案時的使用者和SELINUX和權限處理 linux下使用mount來掛載目錄或磁碟,我們一般會使用這樣的指令 # mount /dev/sdc1 /home/h

安裝網頁套件管理程式 Bower 一個非常棒的Javascript套件管理程式bower,用完愛不釋手。

[Linux] mongodb 初步--1/3 我使用mongo 的一些大小事:安裝及基本操作

[Centos7] 安裝sphinx+php7 在centos7上安裝sphinx,在PHP7上運作正確

[Centos8] 校時ntpdate? 以前常用的ntpdate,在centos8竟然不見了?

[postfix] open /etc/postfix/main.cf: Permission denied 等錯誤 遇到開啟 /etc/postfix/main.cf: Permission denied 等錯誤解決

我有話要說

>>

限制:留言最高字數1000字。 限制:未登入訪客,每則留言間隔需超過10分鐘,每日最多5則留言。

訪客留言

[無留言]

隨機好文

[Windows7] 移除IE10及移除IE11 Windows7 不得已的情況要移除IE11或IE10怎麼做?

[Win7] 燒錄 iso 檔 在Windows7 中內建燒錄程式,可以直接把檔案拉到光碟機裡,再執行燒錄。

詭異的創業思維 創業的思維中,有多少銀彈,有多少技術,有多少人脈,有多少時間等等,每個都要考慮進去,以熱忱建立的關係脆弱的像蘇打餅乾一樣..

[AS3] FLASH 引入外部as檔 FLASH AS3中,若要引用另外撰寫的 class(*.as) 檔案,該如何處理?

讓radio box 或checkbox 好按 在行動裝置下,radio box及checkbox變得很難按得到