How to install perl modules

Last modified on July 24, 2026 • 1 min read • 45 words
In order to check, whether a specific perl module is installed (e.g.
In order to check, whether a specific perl module is installed (e.g. Image::Info for this example) type:perl -MImage::Info -e1 If it is not installed, download it from CPAN, untar, change into the install directory and install like this:perl Makefile.PLmakemake test and then as root:make install