Perl/Installing on *Nix Systems

< Perl

Installing for Beginners

In almost all cases, Perl comes as an installable package or already pre-installed on most modern Unix variants. You simply have to choose the appropriate version and use the built-in tools that come with your Unix variant to add Perl to your system.

Advanced Installation

For advanced installation, you must first obtain the Perl source code. Perl sources comes with a powerful tool called configure, which uses simple shellscripts and small c programs to determine what is installed on the target system, so it can build a proper Perl executable. A C compiler is necessary for compilation from sources.

The following

./configure
make

run from a command shell would run the configure program and then the make facility to build the binary.

A

make install

would require root priviledge, but would install the binaries in a directory where all users could access the program.

Recommended Resources

Main Perl Site

This article is issued from Wikiversity - version of the Friday, July 17, 2015. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.