Installing perl modules from CPAN

perl -MCPAN -e shell
install Date::Pcalc

type 'exit' when finished

If you can't install a module via the above command, you can download the module and install it by hand with the following commands:

perl Makefile.PL
make
make test
make install

See perlmodinstall - Installing CPAN Modules for details. 06/26/2003