show/hide this revision's text 4 deleted 20 characters in body

On Unix:

usually you start cpan in your shell:

# cpan

and type

install Chocolate::Belgian

or in short form:

perl -MCPAN -e 'install

cpan Chocolate::Belgian'

On Windows:

If you're using ActivePerl on Windows, the PPM (Perl Package Manager) has much of the same functionality as CPAN.pm.

Example:

# ppm
ppm> search net-smtp
ppm> install Net-SMTP-Multipart

see How do I install Perl modules? in the CPAN FAQ

Many distributions ship a lot of perl modules as packages.

  • Gentoo: category dev-perl
  • Debian: apt-cache search 'perl$'

You should always prefer them as you benefit from automatic (security) updates and the ease of removal. This can be pretty tricky with the cpan tool itself.

For Gentoo there's a nice tool called g-cpan which builds/installs the module from CPAN and creates a Gentoo package (ebuild) for you.

show/hide this revision's text 3 added 360 characters in body

On Unix:

usually you start cpan in your shell:

# cpan

and type

install Chocolate::Belgian

or in short form:

perl -MCPAN -e 'install Chocolate::Belgian'

On Windows:

If you're using ActivePerl on Windows, the PPM (Perl Package Manager) has much of the same functionality as CPAN.pm.

Example:

# ppm
ppm> search net-smtp
ppm> install Net-SMTP-Multipart

see How do I install Perl modules? in the CPAN FAQ

Many distributions ship a lot of perl modules as packages.

  • Gentoo: category dev-perl
  • Debian: apt-cache search 'perl$'

You should always prefer them as you benefit from automatic (security) updates and the ease of removal. This can be pretty tricky with the cpan tool itself.

For Gentoo there's a nice tool called g-cpan which builds/installs the module from CPAN and creates a Gentoo package (ebuild) for you.

show/hide this revision's text 2 added 765 characters in body

usually you start cpan in your shell:

# cpan

and type

install Chocolate::Belgian

or in short form:

perl -MCPAN -e 'install Chocolate::Belgian'

see How do I install Perl modules? of in the CPAN FAQ

Many distributions ship a lot of perl modules as packages.

  • Gentoo: category dev-perl
  • Debian: apt-cache search 'perl$'

You should always prefer them as you benefit from automatic (security) updates and the ease of removal. This can be pretty tricky with the cpan tool itself.

For Gentoo there's a nice tool called g-cpan which builds/installs the module from CPAN and creates a Gentoo package (ebuild) for you.

show/hide this revision's text 1