How do I install Perl modules?

Linux

Installing PERL modules

perl -MCPAN -e "shell"

Once in the shell:

install Some::Module (in the above shell)

or using MCPAN without the shell:

perl -MCPAN -e "install 'Some::Module'"

or using cpan directly:

cpan -i 'Some::Module'