CPANEdit

The CPAN or Comprehensive Perl Archive Network is an archive of Perl software and a package manager for working with (installing, upgrading, removing) that software.

Basic use

Getting into the shell

sudo -H cpan

Installing a module

sudo -H perl -MCPAN -e 'install Bundle::CPAN'

Or alternatively:

sudo -H cpan Bundle::CPAN

Upgrading all installed modules

sudo -H cpan upgrade

See also