How to install perl modules
By jeltsch on Tue, 10/10/2006 - 20:09In 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.PL
and then as root:
make
make test
make install