Getting Started with Perl

Every now and then, a friend will express an interest in Perl, and wants to know how to get started learning and using it. Here's what I send them.

—Bill Odom


Installation

On Windows, ActiveState's ActivePerl distribution is a good choice:

http://www.activestate.com/Products/Download/Download.plex?id=ActivePerl

On UNIX (or variants such as Linux, FreeBSD, and even Mac OS X), then you're in luck — Perl is probably already available. To install a different (perhaps more recent) version, you can just go to CPAN, grab the sources for the release you want, and build it locally:

http://www.cpan.org/ports/index.html#usethesource

If that's not your style, ActiveState also provides binary distributions for Solaris, Linux, and Mac OS X. Just follow the ActiveState link above and select the appropriate download.

Websites

The two main Perl websites:

Perl 101, "Things Every Perl Programmer Should Know":
http://www.perl101.org

A helpful site for people new to Perl:
http://learn.perl.org/

A searchable interface to the Comprehensive Perl Archive Network (CPAN):
http://search.cpan.org/

A online version of the Perl documentation:
http://perldoc.perl.org/
(These docs are also included as part of any typical Perl installation.)

blogs.perl.org, "a common blogging platform for the Perl community":
http://blogs.perl.org/

Perl community news and individual blogs:
http://use.perl.org/

Community support site (and general hangout) for Perl people:
http://perlmonks.org/

Books

Learning Perl (4rd Edition)
A good book for people with at least a little programming experience.

Programming Perl (3rd Edition)
The definitive reference for Perl, co-authored by Larry Wall, the creator of Perl.

Perl Cookbook (2nd Edition)
Many short examples of how to do very specific tasks in Perl, like “Computing Union, Intersection, or Difference of Unique Lists” or “Writing an Inheritable Class.” A wonderful book.

Perl Best Practices
A set of practical guidelines to help you write reliable, maintainable Perl applications.

The Perl CD Bookshelf, Version 4.0
Many of the O’Reilly Perl books on CD, in HTML, with a search utility. Incredibly useful.

Mailing Lists

Perl Beginners Mailing List
There are lots (and I do mean lots) of Perl mailing lists, but this is a fairly newbie-friendly place where you can ask questions without getting attacked.

Perl Beginners CGI Mailing List
If you're specifically interested in CGI (and similar technologies), try this one.


Back to top