"undefined symbol: Perl_xs_apiversion_bootcheck"

I get this message when I try to run a Perl script used in a bioinformatics package named DISOPRED3:

/usr/bin/perl: symbol lookup error: /software6/bioinfo/apps/mugqic_space/software/
perl/perl-5.18.2/lib/5.18.2/x86_64-linux-thread-multi/auto/Cwd/Cwd.so:
undefined symbol: Perl_xs_apiversion_bootcheck

      

I have used the exact same script on my local machine and it works. Now I have to work on a supercomputer from afar and that's where I get this message. I have checked and the Perl versions are the same on both computers.

+2


source to share


1 answer


It looks like you have two Perl installations, system one ( /usr/bin/perl

) and one in /software6/bioinfo/apps/mugqic_space/software/perl

, and the first is the files installed last. The former shouldn't even have talked about the files installed by the latter.



+5


source







All Articles