在家目录中安装perl模块出现的问题

4
我们在我们的HPC集群中安装了Perl(5.26)作为模块在模块环境中。因为我们不想在整个群集上安装单个用户请求的所有Perl模块,所以我们要求他们在其中一个目录(home、workspace等)中安装所需的perl模块。
我们建议使用cpanm和local::lib来安装所需的模块。Cpanm已经安装在我们的集群上,用户可以自行安装local::lib。然后他们应该能够自己安装perl模块。
实际上,这只适用于一些模块。首先,我们设置了local::lib并设置了环境。
# 1. Install local::lib in your home
wget https://cpan.metacpan.org/authors/id/H/HA/HAARG/local-lib-2.000024.tar.gz
tar xvf local-lib-2.000024.tar.gz
cd local-lib-2.000024
# Install local::lib in your home
perl Makefile.PL --bootstrap
make test && make install

# 2. Configure local::lib, because cpanm uses this configuration. Otherwise cpanm would install modules to system perl, which is not writable for normal users
echo 'eval "$(perl -I$HOME/perl5/lib/perl5 -Mlocal::lib)"' >>~/.bashrc
source ~/.bashrc;

现在我们尝试安装一个模块:

cpanm HTML::PullParser

它尝试安装依赖项 HTML::Tagset,显示 HTML::Tagset 已经安装,但之后却找不到该依赖项。用户的 PERL5LIB 目录中有一个 Tagsat 目录,但其中是空的。

Configuring HTML-Tagset-3.20 ... OK
Building and testing HTML-Tagset-3.20 ... OK
Successfully installed HTML-Tagset-3.20
! Installing the dependencies failed: Module 'HTML::Tagset' is not
installed
! Bailing out the installation for HTML-Parser-3.72.
1 distribution installed

是否有人遇到过同样的问题并知道如何解决?对于像 Math::CDF 这样的模块,它可以正常工作。

编辑以回答评论:

PERL5LIB 和因此 @INC 已更改:

> set | grep ^PERL
PERL5LIB=~/perl5/lib/perl5:/opt/bwhpc/common/devel/perl/5.26/lib/site_perl/5.26.1:/opt/bwhpc/common/devel/perl/5.26/lib
PERL_BIN_DIR=/opt/bwhpc/common/devel/perl/5.26/bin
PERL_HOME=/opt/bwhpc/common/devel/perl/5.26
PERL_LIB_DIR=/opt/bwhpc/common/devel/perl/5.26/lib
PERL_LOCAL_LIB_ROOT=~/perl5
PERL_MAN_DIR=/opt/bwhpc/common/devel/perl/5.26/man
PERL_MB_OPT='--install_base "~/perl5"'
PERL_MM_OPT=INSTALL_BASE=~/perl5
PERL_VERSION=5.26

> perl -I$HOME/perl5/lib/perl5 -Mlocal::lib
PERL_MB_OPT="--install_base \"~/perl5\""; export PERL_MB_OPT;
PERL_MM_OPT="INSTALL_BASE=~/perl5"; export PERL_MM_OPT;
的输出:
Unpacking HTML-Tagset-3.20.tar.gz
HTML-Tagset-3.20/
HTML-Tagset-3.20/Tagset.pm
HTML-Tagset-3.20/Makefile.PL
HTML-Tagset-3.20/META.yml
HTML-Tagset-3.20/MANIFEST.SKIP
HTML-Tagset-3.20/MANIFEST
HTML-Tagset-3.20/README
HTML-Tagset-3.20/t/
HTML-Tagset-3.20/t/01_old_junk.t
HTML-Tagset-3.20/t/pod.t
HTML-Tagset-3.20/t/00_about_verbose.t
HTML-Tagset-3.20/Changes
Entering HTML-Tagset-3.20
Checking configure dependencies from META.yml
Running Makefile.PL
Configuring HTML-Tagset-3.20 ... Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for HTML::Tagset
Writing MYMETA.yml and MYMETA.json
OK
Checking dependencies from MYMETA.json ...
Checking if you have ExtUtils::MakeMaker 0 ... Yes (7.24)
Building and testing HTML-Tagset-3.20 ... cp Tagset.pm blib/lib/HTML/Tagset.pm
Manifying 1 pod document
PERL_DL_NONLAZY=1 "/cluster/bwhpc/common/devel/perl/5.26/bin/perl" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/00_about_verbose.t .. ok   
t/01_old_junk.t ....... ok   
t/pod.t ............... skipped: Test::Pod 1.14 required for testing POD
All tests successful.
Files=3, Tests=3,  0 wallclock secs ( 0.02 usr  0.01 sys +  0.04 cusr  0.02 csys =  0.09 CPU)
Result: PASS
Manifying 1 pod document
Appending installation info to ~/perl5/lib/perl5/x86_64-linux-thread-multi/perllocal.pod
OK
Successfully installed HTML-Tagset-3.20
Installing ~/perl5/lib/perl5/x86_64-linux-thread-multi/.meta/HTML-Tagset-3.20/install.json
! Installing the dependencies failed: Module 'HTML::Tagset' is not installed
! Bailing out the installation for HTML-Parser-3.72.
1 distribution installed

{btsdaf} - Borodin
{btsdaf} - ikegami
{btsdaf} - ikegami
1
{btsdaf} - Fex
{btsdaf} - Fex
显示剩余2条评论
1个回答

0
我偶然找到了我的问题的答案。设置额外的环境变量PERL_CPANM_HOME解决了这个问题。
首先,我们安装local::lib。
# Download and unpack the local::lib tarball from CPAN
wget https://cpan.metacpan.org/authors/id/H/HA/HAARG/local-lib-2.000024.tar.gz
tar xvf local-lib-2.000024.tar.gz
cd local-lib-2.000024
# Install local::lib in your home
perl Makefile.PL --bootstrap
make test && make install

现在我们使用local::lib来配置cpanm和Perl,并设置两个额外的环境变量:
eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib)
export PERL_CPANM_HOME=/tmp/cpanm_$USER
export MANPATH=$MANPATH:~/perl5/man

现在我们可以在集群的HOME目录中安装Perl模块。

cpanm HTML::PullParser

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接