I'm trying update a software and when I running for make update I've a issue:
Can't locate Archive/Tar.pm in @INC (@INC contains: ...)
How I can fix this?
I'm trying update a software and when I running for make update I've a issue:
Can't locate Archive/Tar.pm in @INC (@INC contains: ...)
How I can fix this?
Archive::Tar has been bundled with Perl since Perl 5.10, so unless you are using an ancient version of Perl, you have a partial or corrupted install of Perl.
Some Linux distributions (e.g. Redhat) gut out lesser-used parts of Perl and provide them in an package (e.g. perl-core
) that can be installed using the OS distribution's package manager.
Alternatively, Archive::Tar is available for install separately from Perl —it is "dual-lived"— so you can install it from CPAN.