2

我在 cpanm 下安装了一个模块,显然是错误的。在系统 perl 下运行时可见且可用,但在 perlbrew 下不可用。但是,perlbrews cpanm 声明该模块已成功安装。采取的最佳步骤?

/Users/john/perl5/perlbrew/perls/perl-5.18.2/bin/perl
/Users/john/perl5/bin/cpanm
#!/usr/bin/perl
MM: INSTALL_BASE=/Users/john/perl5
MB: --install_base "/Users/john/perl5"

Note: .pl file contains following
#!/usr/bin/env perl

perlbrew 切换后...

declare -x PERL5LIB="/Users/john/perl5/lib/perl5"
declare -x PERLBREW_BASHRC_VERSION="0.76"
declare -x PERLBREW_HOME="/Users/john/.perlbrew"
declare -x PERLBREW_MANPATH="/Users/john/perl5/perlbrew/perls/perl-5.18.2/man"
declare -x PERLBREW_PATH="/Users/john/perl5/perlbrew/bin:/Users/john/perl5/perlbrew/perls/perl-5.18.2/bin"
declare -x PERLBREW_PERL="perl-5.18.2"
declare -x PERLBREW_ROOT="/Users/john/perl5/perlbrew"
declare -x PERLBREW_VERSION="0.76"
declare -x PERL_LOCAL_LIB_ROOT="/Users/john/perl5"
declare -x PERL_MB_OPT="--install_base \"/Users/john/perl5\""
declare -x PERL_MM_OPT="INSTALL_BASE=/Users/john/perl5"

使用 hombrew 链接到 sybase 安装

4

2 回答 2

2

cpanm不安装任何模块。它只是运行与您要安装的发行版一起打包的安装程序。通过PERL_MM_OPTPERL_MB_OPTenv 变量,您指示这些安装程序将模块安装在错误的位置。摆脱他们。

于 2016-12-02T15:25:26.633 回答
0

我遇到了类似的问题,无法理解如何cpanm为预期的 Perl 制作安装模块。我perlbrew通过以下方式安装:

perlbrew --switch --notest install perl-stable

我认为这--switch会将我的使用引导到新的 Perl,我可以通过以下方式看到新的 Perl:

perlbrew exec perl -v | grep 'This is'

但是当我通过以下方式运行我的脚本时,安装模块cpanm不起作用(找不到模块):

perlbrew exec perl myscript.pl

这篇which-version-of-perl 的帖子让我觉得可能--switch没有达到我想要的效果。运行以下允许cpanm开始安装到预期的 Perl:

perlbrew switch perl-5.26.1
于 2018-01-16T17:00:42.163 回答