Unattended installation of package-based Perl modules in Ubuntu

I would like to install the Perl modules necessary for a specific Perl script, for example, those listed by the tool perl-depends. However, I would like to do this in Ubuntu using apt-get, which means installing modules through the package repository, not through CPAN.

Most of the similar questions (like this one ) address how to do this through CPAN.

+5
source share
2 answers
+5
source

This list lists all packages with perl:

sudo apt-cache search perl *

then

sudo apt-get install pkg_name_in_output

+1

All Articles