|
|
How to check and install missing perl modules... - Perl
|
Views : 323
|
|
Tagged in : Perl
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
* 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
|
|
By - Nithya, On - 2010-01-28 |
|
|
|