How to check and install missing perl modules...

by Nithya 2010-01-28 14:17:40

* Check if module is installed. Errors mean missing module.

# perl -MModule::Name -e 1

* See documentation of the module if installed.

# perldoc Module::Name

* Open CPAN shell:

# perl -MCPAN -e shell

* To reconfigure the shell if needed.

cpan>o conf init

* Install an available module.

cpan> install Module::Name

* Force install if test fails.

cpan> force install Module::Name

* To manual install perl modules.

# perl Makefile.PL
# make
# make test
# make install

Tagged in:

1138
like
0
dislike
0
mail
flag

You must LOGIN to add comments