gpt4 book ai didi

perl - 如何使用 cpanm 更新 perl 模块

转载 作者:行者123 更新时间:2023-12-02 21:16:36 24 4
gpt4 key购买 nike

我尝试使用 cpanm 安装/更新 Perl 模块。但是,每个模块都失败了。

例如:

cpanm Config::General
--> Working on Config::General
Fetching http://www.cpan.org/authors/id/T/TL/TLINDEN/Config-General-2.56.tar.gz ... OK
Configuring Config-General-2.56 ... OK
Building and testing Config-General-2.56 ... OK
Successfully installed Config-General-2.56 (upgraded from 2.52)
1 distribution installed

所以,我预计 Config::General 的版本现在是 2.56,但是...:

perl -e 'use Config::General 2.56'
Config::General version 2.56 required--this is only version 2.52 at -e line 1.

我尝试以相同的方式登录 superU,但出现同样的问题...但现在,我有 Perl 库

~/perl5/lib/perl5//usr/lib/perl/5.18/

如何使用 cpanm 正确更新 Perl 模块?


有关我的安装的一些信息:

$ perl -E'
say "$_=$ENV{$_}" for qw( PERL_MM_OPT PERL_MB_OPT PERL5LIB );
say "--";
say for @INC;
'
PERL_MM_OPT=INSTALL_BASE=/home/hacklionex/perl5
PERL_MB_OPT=--install_base "/home/hacklionex/perl5"
PERL5LIB=
--
/etc/perl
/usr/local/lib/perl/5.18.2
/usr/local/share/perl/5.18.2
/usr/lib/perl5
/usr/share/perl5
/usr/lib/perl/5.18
/usr/share/perl/5.18
/usr/local/lib/site_perl
.

最佳答案

您正在指示模块安装程序在 /home/hacklionex/perl5 中安装模块(通过 PERL_MM_OPTPERL_MB_OPT),但您没有不要告诉 Perl 在那里查找模块(它不在 @INC 中)。将以下内容添加到您的登录脚本中:

export PERL5LIB=/home/hacklionex/perl5/lib/perl5

或者将以下内容添加到您的脚本中:

use lib '/home/hacklionex/perl5/lib/perl5';

关于perl - 如何使用 cpanm 更新 perl 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30266450/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com