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

List the data types that Perl can handle?

570


Why do we use "use strict" in perl?

525


What is cpan in perl?

548


How many types of primary data structures in Perl and what do they mean?

845


Why Perl aliases are considered to be faster than references?

537






What happens to objects lost in "unreachable" memory, such as the object returned by Ob->new() in `{ my $ap; $ap = [ Ob->new(), $ap ]; }' ?

542


Write a program that explains the symbolic table clearly.

526


What is the importance of perl warnings?

533


Show the use of sockets for the server and client side of a conversation?

470


Comment on the scope of variables in perl.

525


You want to open and read data files with perl. How would you do that?

498


What is the use of –w?

527


How to disable the mod_perl from apache_server as i have used perlfect search on the site and its pagination is not working and the remedy is to disable the mod_perl.

1788


How do you find the length of an array?

552


Explain perl one-liner?

512