how to install a package in perl ????

Answer Posted / jayakumar.b

Perl Installation on Linux/Unix:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
% perl Makefile.PL
% make // nmake for Windows.
% make test
% make install
% make clean

Perl Installation on Windows:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
% perl -MCPAN -e shell
% install <Module Name> Eg: install Net::FTP

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between declarations of 'my' and 'local' variable scope in perl?

709


How does polymorphism work in perl?

675


Explain grooving and shortening of arrays?

876


What are the different instances used in cgi overhead?

755


Explain what is perl language?

676


There are some duplicate entries in an array and you want to remove them. How would you do that?

692


There are two types of eval statements i.e. Eval expr and eval block. Explain them.

708


What is the closure in PERL?

755


What are the functions that can be performed using cgi program?

663


What are the reasons that cookie server can’t handle multiple connections?

730


How do I print the entire contents of an array with Perl?

735


How to remove a directory in perl?

687


What are scalars in perl?

708


What does Perl do if you try to exploit the execve(2) race involving setuid scripts?

716


How to read from a pipeline with Perl

759