Perl: Difference between revisions

From UMIACS
Jump to navigation Jump to search
(Created page with "Perl is a general-purpose programming language originally developed for text manipulation and now used for a wide range of tasks including system administration, web developme...")
 
Line 7: Line 7:
===RHEL===
===RHEL===
:For RHEL, different versions of Perl can be found via [[Modules | GNU Modules.]]
:For RHEL, different versions of Perl can be found via [[Modules | GNU Modules.]]
:The versions in /usr have PerlLocalLib support to allow users an easy way to install and maintain their own perl modules:
:* RHEL 5
:** /usr/bin/perl -  5.8.8
:** /usr/local/stow/perl-5.14.2 - 5.14.2
:* RHEL 6
:** /usr/bin/perl -  5.10.1
:** /opt/local/stow/perl-5.14.2 - 5.14.2


===Ubuntu===
===Ubuntu===
:For Ubuntu hosts, different version of Perl can be install through the [[Ubuntu/SoftwareCenter | Ubuntu Software Center ]]
:For Ubuntu hosts, different version of Perl can be install through the [[Ubuntu/SoftwareCenter | Ubuntu Software Center ]]
<br/>
:The versions in /usr and /opthave PerlLocalLib support to allow users an easy way to install and maintain their own perl modules:
:* Ubuntu Precise 12.04
:** /usr/bin/perl - 5.14.2
 
:* Ubuntu Trusty 14.04
:** /usr/bin/perl - 5.18.2
 
===WIN32===
:ActiveState Perl can be installed on your PC upon request. Contact [mailto:staff@umiacs.umd.edu staff] for details.


If you find that you need a version of Perl that is not readily available, you can always build it from [http://www.cpan.org/src/  source.]
If you find that you need a version of Perl that is not readily available, you can always build it from [http://www.cpan.org/src/  source.]

Revision as of 19:11, 13 July 2016

Perl is a general-purpose programming language originally developed for text manipulation and now used for a wide range of tasks including system administration, web development, network programming, GUI development, and more. The language is intended to be practical (easy to use, efficient, complete) rather than beautiful (tiny, elegant, minimal). Its major features are that it's easy to use, supports both procedural and object-oriented (OO) programming, has powerful built-in support for text processing, and has one of the world's most impressive collections of third-party modules.

Perl Versions

While most modern operating systems ship with a version of Perl, UMIACS also maintains multiple versions.

RHEL

For RHEL, different versions of Perl can be found via GNU Modules.
The versions in /usr have PerlLocalLib support to allow users an easy way to install and maintain their own perl modules:
  • RHEL 5
    • /usr/bin/perl - 5.8.8
    • /usr/local/stow/perl-5.14.2 - 5.14.2
  • RHEL 6
    • /usr/bin/perl - 5.10.1
    • /opt/local/stow/perl-5.14.2 - 5.14.2

Ubuntu

For Ubuntu hosts, different version of Perl can be install through the Ubuntu Software Center
The versions in /usr and /opthave PerlLocalLib support to allow users an easy way to install and maintain their own perl modules:
  • Ubuntu Precise 12.04
    • /usr/bin/perl - 5.14.2
  • Ubuntu Trusty 14.04
    • /usr/bin/perl - 5.18.2

WIN32

ActiveState Perl can be installed on your PC upon request. Contact staff for details.

If you find that you need a version of Perl that is not readily available, you can always build it from source.

Installing Modules

In order to ensure backwards compatibility and functionality, we prefer that users create their own installations of perl modules so that we can keep the central versions of Perl as vanilla as possible. The following instructions will show you how to setup and install local copies of Perl Modules.