Installing perl module

installationperl

How to install perl module Util.pm .I am missing this module .What is the procedure to install a perl module

Best Answer

Regardless of which platform you may be on, you may be able to install the module using the CPAN shell. You can drop down to the CPAN shell by running the command:

perl -MCPAN -e shell

and from there use the install command to fetch and install the module you need installed.

The perldoc for CPAN is helpful in understanding how to use CPAN and what it does and how it works.

You may use the i /Util/ command to search modules and packages that match the given pattern. Or, you could go to search.cpan.org and look for the module you are looking for.