Installing Perl Modules / Installing CPAN Modules

Home » Perl » Installing Perl Modules / Installing CPAN Modules
Date: 2005-09-05
Link: http://perl.devquickref.com/perl-installing-perl-modules-CPAN-modules.html

Installing Perl Modules / Installing CPAN Modules

 
tar -zxvf yourmodule.tar.gz
perl Makefile.PL
make
make test
make install
( on Windows: use "dmake" but you will need to download it from somewhere )
or you can use CPAN perl module:
perl -MCPAN -e "install DBI"