I have installed ActivePerl in order to run a bioinformatic tool. after running the tool on Windows PowerShell I got this message:
Perl module Archive::Extract (in core since 2007-07-07) is not installed on this machine! Perl modules are available for download at http://www.cpan.org/
If you have CPAN installed try the following: cpan install Archive::Extract exit
If you are on Mac or Unix you should run cpan with sudo: sudo cpan install Archive::Extract exit
So I tried to install it:
cpan
install Archive::Extract
and got this:
"C:\Perl64\bin\perl.exe" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef Test::Harness::Switches; test_harness(0, 'blib\lib', 'blib\arch')" t/.t t/01_Archive-Extract.t .. # Older versions of Archive::Zip may cause File::Spec warnings See bug #19713 in rt.cpan.org. It is safe to ignore them t/01_Archive-Extract.t .. 87/?
As I'm not adept at this I thought that I should try to install again the Archive::Zip
install Archive::Zip
but I got :
t/25_traversal.t .............. 1/41 Failed test 'Tree extraction aborted' at t/25_traversal.t line 97. got: '0' expected: '2' Looks like you failed 1 test of 41. t/25_traversal.t .............. Dubious, test returned 1 (wstat 256, 0x100) Failed 1/41 subtests (less 32 skipped subtests: 8 okay)
Test Summary Report
t/25_traversal.t (Wstat: 256 Tests: 41 Failed: 1) Failed test: 16 Non-zero exit status: 1 Files=25, Tests=346, 18 wallclock secs ( 0.19 usr + 0.13 sys = 0.31 CPU) Result: FAIL Failed 1/25 test programs. 1/346 subtests failed. dmake.exe: Error code 129, while making 'test_dynamic'
Could you please explain what's the particular problem in order to understand it and how can I solve it?
I don't know if it's a naive question as I have just started learning about command line tools, Linux, Perl etc.