|
.ds Aq
|
| DECOMPRESS the file | |
| UNPACK the file into a directory | |
| BUILD the module (sometimes unnecessary) | |
| INSTALL the module. | |
Also note that these instructions are tailored for installing the module into your systems repository of Perl modules, but you can install modules into any directory you wish. For instance, where I say perl Makefile.PL, you can substitute perl Makefile.PL PREFIX=/my/perl_directory to install the modules into /my/perl_directory. Then you can use the modules from your Perl programs with use lib "/my/perl_directory/lib/site_perl"; or sometimes just use "/my/perl_directory";. If youre on a system that requires superuser/root access to install modules into the directories you see when you type perl -e "print qq(@INC)", youll want to install them into a local directory (such as your home directory) and use this approach.
| o |
If youre on a Unix or Unix-like system,
You can use Andreas Koenigs CPAN module ( http://www.cpan.org/modules/by-module/CPAN ) to automate the following steps, from DECOMPRESS through INSTALL. A. DECOMPRESS Decompress the file with gzip -d yourmodule.tar.gz You can get gzip from ftp://prep.ai.mit.edu/pub/gnu/ Or, you can combine this step with the next to save disk space:
B. UNPACK Unpack the result with tar -xof yourmodule.tar C. BUILD Go into the newly-created directory and type:
or
to install it locally. (Remember that if you do this, youll have to put use lib "/my/perl_directory"; near the top of the program that is to use this module. D. INSTALL While still in that directory, type:
Make sure you have the appropriate permissions to install the module in your Perl 5 library directory. Often, youll need to be root. Thats all you need to do on Unix systems with dynamic linking. Most Unix systems have dynamic linking. If yours doesnt, or if for another reason you have a statically-linked perl, and the module requires compilation, youll need to build a new Perl binary that includes the module. Again, youll probably need to be root. |
| o |
If youre running ActivePerl (Win95/98/2K/NT/XP, Linux, Solaris)
First, type ppm from a shell and see whether ActiveStates PPM repository has your module. If so, you can install it with ppm and you wont have to bother with any of the other steps here. You might be able to use the CPAN instructions from the Unix or Linux section above as well; give it a try. Otherwise, youll have to follow the steps below.
You can use the shareware Winzip ( http://www.winzip.com ) to decompress and unpack modules.
If you used WinZip, this was already done for you.
Youll need the nmake utility, available at http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/nmake15.exe or dmake, available on CPAN. http://search.cpan.org/dist/dmake/ Does the module require compilation (i.e. does it have files that end in .xs, .c, .h, .y, .cc, .cxx, or .C)? If it does, life is now officially tough for you, because you have to compile the module yourself (no easy feat on Windows). Youll need a compiler such as Visual C++. Alternatively, you can download a pre-built PPM package from ActiveState. http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/ Go into the newly-created directory and type:
While still in that directory, type:
|
| o |
If youre using a Macintosh with Classic MacOS and MacPerl,
A. DECOMPRESS First, make sure you have the latest cpan-mac distribution ( http://www.cpan.org/authors/id/CNANDOR/ ), which has utilities for doing all of the steps. Read the cpan-mac directions carefully and install it. If you choose not to use cpan-mac for some reason, there are alternatives listed here. After installing cpan-mac, drop the module archive on the untarzipme droplet, which will decompress and unpack for you. Or, you can either use the shareware StuffIt Expander program ( http://my.smithmicro.com/mac/stuffit/ ) or the freeware MacGzip program ( http://persephone.cps.unizar.es/general/gente/spd/gzip/gzip.html ). B. UNPACK If youre using untarzipme or StuffIt, the archive should be extracted now. Or, you can use the freeware suntar or Tar ( http://hyperarchive.lcs.mit.edu/HyperArchive/Archive/cmp/ ). C. BUILD Check the contents of the distribution. Read the modules documentation, looking for reasons why you might have trouble using it with MacPerl. Look for .xs and .c files, which normally denote that the distribution must be compiled, and you cannot install it out of the box. (See PORTABILITY.) D. INSTALL If you are using cpan-mac, just drop the folder on the installme droplet, and use the module. Or, if you arent using cpan-mac, do some manual labor. Make sure the newlines for the modules are in Mac format, not Unix format. If they are not then you might have decompressed them incorrectly. Check your decompression and unpacking utilities settings to make sure they are translating text files properly. As a last resort, you can use the perl one-liner:
on the source files. Then move the files (probably just the .pm files, though there may be some additional ones, too; check the module documentation) to their final destination: This will most likely be in $ENV{MACPERL}site_lib: (i.e., HD:MacPerl folder:site_lib:). You can add new paths to the default @INC in the Preferences menu item in the MacPerl application ($ENV{MACPERL}site_lib: is added automagically). Create whatever directory structures are required (i.e., for Some::Module, create $ENV{MACPERL}site_lib:Some: and put Module.pm in that directory). Then run the following script (or something like it):
|
| o |
If youre on the DJGPP port of DOS,
djtarx ( ftp://ftp.delorie.com/pub/djgpp/current/v2/ ) will both uncompress and unpack.
See above.
Go into the newly-created directory and type:
You will need the packages mentioned in README.dos in the Perl distribution.
While still in that directory, type:
You will need the packages mentioned in README.dos in the Perl distribution. |
| o |
If youre on OS/2,
Get the EMX development suite and gzip/tar, from either Hobbes ( http://hobbes.nmsu.edu ) or Leo ( http://www.leo.org ), and then follow the instructions for Unix. |
| o |
If youre on VMS,
When downloading from CPAN, save your file with a .tgz extension instead of .tar.gz. All other periods in the filename should be replaced with underscores. For example, Your-Module-1.33.tar.gz should be downloaded as Your-Module-1_33.tgz. A. DECOMPRESS Type
or, for zipped modules, type
Executables for gzip, zip, and VMStar:
and their source code:
Note that GNUs gzip/gunzip is not the same as Info-ZIPs zip/unzip package. The former is a simple compression tool; the latter permits creation of multi-file archives. B. UNPACK If youre using VMStar:
Or, if youre fond of VMS command syntax:
C. BUILD Make sure you have MMS (from Digital) or the freeware MMK ( available from MadGoat at http://www.madgoat.com ). Then type this to create the DESCRIP.MMS for the module:
Now youre ready to build:
Substitute mmk for mms above if youre using MMK. D. INSTALL Type
Substitute mmk for mms above if youre using MMK. |
| o |
If youre on MVS,
Introduce the .tar.gz file into an HFS as binary; dont translate from ASCII to EBCDIC. A. DECOMPRESS Decompress the file with gzip -d yourmodule.tar.gz You can get gzip from http://www.s390.ibm.com/products/oe/bpxqp1.html B. UNPACK Unpack the result with
The BUILD and INSTALL steps are identical to those for Unix. Some modules generate Makefiles that work better with GNU make, which is available from http://www.mks.com/s390/gnu/ |
Note that not all modules will work with on all platforms. See perlport for more information on portability issues. Read the documentation to see if the module will work on your system. There are basically three categories of modules that will not work out of the box with all platforms (with some possibility of overlap):Check the CPAN Testers if a module should work with your platform but it doesnt behave as youd expect, or you arent sure whether or not a module will work under your platform. If the module you want isnt listed there, you can test it yourself and let CPAN Testers know, you can join CPAN Testers, or you can request it be tested.
o Those that should, but dont. These need to be fixed; consider contacting the author and possibly writing a patch. o Those that need to be compiled, where the target platform doesnt have compilers readily available. (These modules contain .xs or .c files, usually.) You might be able to find existing binaries on the CPAN or elsewhere, or you might want to try getting compilers and building it yourself, and then release the binary for other poor souls to use. o Those that are targeted at a specific platform. (Such as the Win32:: modules.) If the module is targeted specifically at a platform other than yours, youre out of luck, most likely.
If you have any suggested changes for this page, let me know. Please dont send me mail asking for help on how to install your modules. There are too many modules, and too few Orwants, for me to be able to answer or even acknowledge all your questions. Contact the module author instead, or post to comp.lang.perl.modules, or ask someone familiar with Perl on your operating system.
Jon Orwantwith invaluable help from Chris Nandor, and valuable help from Brandon Allbery, Charles Bailey, Graham Barr, Dominic Dunlop, Jarkko Hietaniemi, Ben Holzman, Tom Horsley, Nick Ing-Simmons, Tuomas J. Lukka, Laszlo Molnar, Alan Olsen, Peter Prymmer, Gurusamy Sarathy, Christoph Spalinger, Dan Sugalski, Larry Virden, and Ilya Zakharevich.
First version July 22, 1998; last revised November 21, 2001.
Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.Permission is granted to make and distribute verbatim copies of this documentation provided the copyright notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this documentation under the conditions for verbatim copying, provided also that they are marked clearly as modified versions, that the authors names and title are unchanged (though subtitles and additional authors names may be added), and that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.
Permission is granted to copy and distribute translations of this documentation into another language, under the above conditions for modified versions.
| perl v5.14.0 | PERLMODINSTALL (1) | 2011-04-13 |
Visit the GSP FreeBSD Man Page Interface.
Output converted with manServer 1.07.