我开始遇到使用conda('abricate','mlst')安装的不同程序的麻烦,并在@INC中找不到文件/Slurp.pm时给出了错误消息。这是在更换计算机并必须重新安装其他东西并更改为anaconda3之后发生的。举例来说,尝试开始废除时,我收到以下错误消息:
Can't locate File/Slurp.pm in @INC (you may need to install the File::Slurp module)
(@INC contains: /anaconda3/lib/perl5/site_perl/5.22.0/darwin-thread-multi-2level /anaconda3/lib/perl5/site_perl/5.22.0 /anaconda3/lib/perl5/5.22.0/darwin-thread-multi-2level /anaconda3/lib/perl5/5.22.0 .) at /anaconda3/bin/abricate line 9.
BEGIN failed--compilation aborted at /anaconda3/bin/abricate line 9.
当我在计算机上搜索安装时,它已经存在于多个位置(其中有些是空的?):
我试图重新安装Slurp模块
conda install -c bioconda perl-file-slurp
但这没有帮助。
我试图进一步了解how the @INC is build up。 但是我对conda安装的程序如何工作感到困惑。当我查看perl环境时,与错误消息相比,我得到的位置不同,该错误消息为@INC指定了不同的文件夹。
$ env -i perl -V
Summary of my perl5 (revision 5 version 18 subversion 2) configuration:
Platform:
osname=darwin, osvers=18.0, archname=darwin-thread-multi-2level
uname='darwin osx337.sd.apple.com 18.0 darwin kernel version 17.0.0: fri may 4 10:33:38 pdt 2018; root:xnu-4570.1.46.100.2~1development_x86_64 x86_64 '
config_args='-ds -e -Dprefix=/usr -Dccflags=-g -pipe -Dldflags= -Dman3ext=3pm -Duseithreads -Duseshrplib -Dinc_version_list=none -Dcc=cc'
hint=recommended, useposix=true, d_sigaction=define
useithreads=define, usemultiplicity=define
useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
use64bitint=define, use64bitall=define, uselongdouble=undef
usemymalloc=n, bincompat5005=undef
Compiler:
cc='cc', ccflags =' -g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -fstack-protector',
optimize='-Os',
cppflags='-g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -fstack-protector'
ccversion='', gccversion='4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.0.42)', gccosandvers=''
intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
ivtype='long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8
alignbytes=8, prototype=define
Linker and Libraries:
ld='cc', ldflags =' -fstack-protector'
libpth=/usr/lib /usr/local/lib
libs=
perllibs=
libc=, so=dylib, useshrplib=true, libperl=libperl.dylib
gnulibc_version=''
Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=bundle, d_dlsymun=undef, ccdlflags=' '
cccdlflags=' ', lddlflags=' -bundle -undefined dynamic_lookup -fstack-protector'
Characteristics of this binary (from libperl):
Compile-time options: HAS_TIMES MULTIPLICITY PERLIO_LAYERS
PERL_DONT_CREATE_GVSV
PERL_HASH_FUNC_ONE_AT_A_TIME_HARD
PERL_IMPLICIT_CONTEXT PERL_MALLOC_WRAP
PERL_PRESERVE_IVUV PERL_SAWAMPERSAND USE_64_BIT_ALL
USE_64_BIT_INT USE_ITHREADS USE_LARGE_FILES
USE_LOCALE USE_LOCALE_COLLATE USE_LOCALE_CTYPE
USE_LOCALE_NUMERIC USE_PERLIO USE_PERL_ATOF
USE_REENTRANT_API
Locally applied patches:
/Library/Perl/Updates/<version> comes before system perl directories
installprivlib and installarchlib points to the Updates directory
Built under darwin
Compiled at Aug 17 2018 17:29:08
@INC:
/Library/Perl/5.18/darwin-thread-multi-2level
/Library/Perl/5.18
/Network/Library/Perl/5.18/darwin-thread-multi-2level
/Network/Library/Perl/5.18
/Library/Perl/Updates/5.18.2
/System/Library/Perl/5.18/darwin-thread-multi-2level
/System/Library/Perl/5.18
/System/Library/Perl/Extras/5.18/darwin-thread-multi-2level
/System/Library/Perl/Extras/5.18
.
我的路径如下:
$ echo $PATH
/anaconda3/bin:/anaconda3/condabin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/ncbi/blast/bin:/opt/X11/bin
我相信也可以通过在程序本身中添加内容来更改环境
use lib '/anaconda3/lib/site_perl/5.26.2/darwin-thread-multi-2level';
但是由于我在使用多个程序时遇到问题,所以我想了解核心问题是什么(除了我对这个问题还不熟悉...:)
答案 0 :(得分:1)
您似乎已经弄乱了系统。
如果我正确解释了消息,则说明您至少安装了三种不同的Perl:
osvers=18.0
)安装中 env -i CMD
在CMD
的空白环境中开始,因此它将删除您可能配置的所有内容。因此env -i perl -V
将在您的系统中找到“默认” perl,它是/usr/bin/perl
中macOS Mojave安装中的一个。
但是该perl不会导致错误消息,因此我们可以忽略它。
执行conda ...
时似乎使用了/anaconda3
中的perl 5.22.0。但是同时您已经在该环境中安装了perl 5.26.2。我的有根据的猜测是:
conda install
运行中使用相同的频道(您的问题表明您要使用“ bioconda”频道?)因此,您应该尝试的第一件事是在运行conda
的同一终端中:
$ which perl
$ perl -V
如何解决此问题?这是我会尝试的事情:
conda update -c bioconda perl
更新Anaconda 3 perl软件包conda remove -c bioconda perl
和conda install -c bioconda perl
rm -rf /anaconda3
,从PATH
中删除~/.bashrc
个附加项,然后关闭终端。