perlmodinstall.pod
来自「MSYS在windows下模拟了一个类unix的终端」· POD 代码 · 共 487 行
POD
487 行
=head1 NAMEperlmodinstall - Installing CPAN Modules=head1 DESCRIPTIONYou can think of a module as the fundamental unit of reusable Perlcode; See L<perlmod> for details. Whenever anyone creates a chunkof Perl code that they think will be useful to the world, theyregister as a Perl developer athttp://www.perl.com/CPAN/modules/04pause.html so that they can thenupload their code to CPAN. CPAN is the Comprehensive Perl ArchiveNetwork and can be accessed at http://www.perl.com/CPAN/, or searchedvia http://cpan.perl.com/ andhttp://theory.uwinnipeg.ca/mod_perl/cpan-search.pl .This documentation is for people who want to download CPAN modulesand install them on their own computer.=head2 PREAMBLEYou have a file ending in F<.tar.gz> (or, less often, F<.zip>).You know there's a tasty module inside. You must now take foursteps:=over 5=item B<DECOMPRESS> the file=item B<UNPACK> the file into a directory=item B<BUILD> the module (sometimes unnecessary)=item B<INSTALL> the module.=backHere's how to perform each step for each operating system. This isI<not> a substitute for reading the README and INSTALL files thatmight have come with your module!Also note that these instructions are tailored for installing themodule into your system's repository of Perl modules. But you caninstall modules into any directory you wish. For instance, where Isay C<perl Makefile.PL>, you can substitute C<perlMakefile.PL PREFIX=/my/perl_directory> to install the modulesinto C</my/perl_directory>. Then you can use the modulesfrom your Perl programs with C<use lib"/my/perl_directory/lib/site_perl"> or sometimes just C<use"/my/perl_directory">.=over 4=item *B<If you're on Unix,>You can use Andreas Koenig's CPAN module(which comes standard with Perl, or can itself be downloadedfrom http://www.perl.com/CPAN/modules/by-module/CPAN)to automate the following steps, from DECOMPRESS through INSTALL.A. DECOMPRESSDecompress the file with C<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: gzip -dc yourmodule.tar.gz | tar -xof -B. UNPACKUnpack the result with C<tar -xof yourmodule.tar>C. BUILDGo into the newly-created directory and type: perl Makefile.PL make make testD. INSTALLWhile still in that directory, type: make installMake sure you have appropriate permissions to install the modulein your Perl 5 library directory. Often, you'll need to be root.Perl maintains a record of all module installations. To look atthis list, simply type: perldoc perllocalThat's all you need to do on Unix systems with dynamic linking.Most Unix systems have dynamic linking--if yours doesn't, or if foranother reason you have a statically-linked perl, I<and> themodule requires compilation, you'll need to build a new Perl binarythat includes the module. Again, you'll probably need to be root.=item *B<If you're running Windows 95 or NT with the ActiveState port of Perl> A. DECOMPRESSYou can use the shareware B<Winzip> program ( http://www.winzip.com ) todecompress and unpack modules. B. UNPACKIf you used WinZip, this was already done for you. C. BUILDDoes the module require compilation (i.e. does it have filesthat end in .xs, .c, .h, .y, .cc, .cxx, or .C)? If it does, you're onyour own. You can try compiling it yourself if you have a C compiler.If you're successful, consider uploading the resulting binary toCPAN for others to use. If it doesn't, go to INSTALL. D. INSTALLCopy the module into your Perl's I<lib> directory. That'll be oneof the directories you see when you type perl -e 'print "@INC"'=item *B<If you're running Windows 95 or NT with the core Windows distribution ofPerl,> A. DECOMPRESSWhen you download the module, make sure it ends in eitherF<.tar.gz> or F<.zip>. Windows browsers sometimesdownload C<.tar.gz> files as C<_tar.tar>, becauseearly versions of Windows prohibited more than one dot in a filename.You can use the shareware B<WinZip> program ( http://www.winzip.com ) todecompress and unpack modules.Or, you can use InfoZip's C<unzip> utility (http://www.cdrom.com/pub/infozip/ ) to uncompress C<.zip> files; typeC<unzip yourmodule.zip> in your shell.Or, if you have a working C<tar> and C<gzip>, you cantype gzip -cd yourmodule.tar.gz | tar xvf -in the shell to decompress C<yourmodule.tar.gz>. This willUNPACK your module as well. B. UNPACKThe methods in DECOMPRESS will have done this for you. C. BUILDGo into the newly-created directory and type: perl Makefile.PL dmake dmake testDepending on your perl configuration, C<dmake> might not beavailable. You might have to substitute whatever C<perl-V:make> says. (Usually, that will be C<nmake> orC<make>.) D. INSTALLWhile still in that directory, type: dmake install=item *B<If you're using a Macintosh,>A. DECOMPRESSFirst thing you should do is make sure you have the latest B<cpan-mac>distribution ( http://www.cpan.org/authors/id/CNANDOR/ ), which hasutilities for doing all of the steps. Read the cpan-mac directionscarefully and install it. If you choose not to use cpan-macfor some reason, there are alternatives listed here.After installing cpan-mac, drop the module archive on theB<untarzipme> droplet, which will decompress and unpack for you.B<Or>, you can either use the shareware B<StuffIt Expander> program( http://www.aladdinsys.com/expander/ )in combination with B<DropStuff with Expander Enhancer>( http://www.aladdinsys.com/dropstuff/ )or the freeware B<MacGzip> program (http://persephone.cps.unizar.es/general/gente/spd/gzip/gzip.html ).B. UNPACKIf you're using untarzipme or StuffIt, the archive should be extractednow. B<Or>, you can use the freeware B<suntar> or I<Tar> (http://hyperarchive.lcs.mit.edu/HyperArchive/Archive/cmp/ ).C. BUILDCheck the contents of the distribution.Read the module's documentation, looking forreasons why you might have trouble using it with MacPerl. Look forF<.xs> and F<.c> files, which normally denote that the distributionmust be compiled, and you cannot install it "out of the box."(See L<"PORTABILITY">.)If a module does not work on MacPerl but should, or needs to becompiled, see if the module exists already as a port on theMacPerl Module Porters site (http://pudge.net/mmp/).For more information on doing XS with MacPerl yourself, seeArved Sandstrom's XS tutorial (http://macperl.com/depts/Tutorials/),and then consider uploading your binary to the CPAN andregistering it on the MMP site.D. INSTALLIf you are using cpan-mac, just drop the folder on theB<installme> droplet, and use the module.B<Or>, if you aren't 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. Checkyour decompression and unpacking utilities settings to make sure they aretranslating text files properly.As a last resort, you can use the perl one-liner: perl -i.bak -pe 's/(?:\015)?\012/\015/g' <filenames>on the source files.Then move the files (probably just the F<.pm> files, though theremay be some additional ones, too; check the module documentation)to their final destination: This willmost likely be in C<$ENV{MACPERL}site_lib:> (i.e.,C<HD:MacPerl folder:site_lib:>). You can add new paths tothe default C<@INC> in the Preferences menu item in theMacPerl application (C<$ENV{MACPERL}site_lib:> is addedautomagically). Create whatever directory structures are required(i.e., for C<Some::Module>, createC<$ENV{MACPERL}site_lib:Some:> and putC<Module.pm> in that directory).Then run the following script (or something like it): #!perl -w use AutoSplit; my $dir = "${MACPERL}site_perl"; autosplit("$dir:Some:Module.pm", "$dir:auto", 0, 1, 1);=item *B<If you're on the DJGPP port of DOS,> A. DECOMPRESSdjtarx ( ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2/ )will both uncompress and unpack. B. UNPACKSee above. C. BUILDGo into the newly-created directory and type: perl Makefile.PL make make testYou will need the packages mentioned in F<README.dos>in the Perl distribution. D. INSTALLWhile still in that directory, type: make installYou will need the packages mentioned in F<README.dos> in the Perl distribution.=item *B<If you're 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 followthe instructions for Unix.=item *B<If you're on VMS,>When downloading from CPAN, save your file with a F<.tgz>extension instead of F<.tar.gz>. All other periods in thefilename should be replaced with underscores. For example,C<Your-Module-1.33.tar.gz> should be downloaded asC<Your-Module-1_33.tgz>.A. DECOMPRESSType gzip -d Your-Module.tgzor, for zipped modules, type unzip Your-Module.zipExecutables for gzip, zip, and VMStar ( Alphas:http://www.openvms.digital.com/freeware/000TOOLS/ALPHA/ and Vaxen:http://www.openvms.digital.com/freeware/000TOOLS/VAX/ ).gzip and tarare also available at ftp://ftp.digital.com/pub/VMS.Note that GNU's gzip/gunzip is not the same as Info-ZIP's zip/unzippackage. The former is a simple compression tool; the latter permitscreation of multi-file archives.B. UNPACKIf you're using VMStar: VMStar xf Your-Module.tarOr, if you're fond of VMS command syntax: tar/extract/verbose Your_Module.tarC. BUILDMake sure you have MMS (from Digital) or the freeware MMK ( available fromMadGoat at http://www.madgoat.com ). Then type this to create theDESCRIP.MMS for the module: perl Makefile.PLNow you're ready to build: mms mms testSubstitute C<mmk> for C<mms> above if you're using MMK.D. INSTALLType mms installSubstitute C<mmk> for C<mms> above if you're using MMK.=item *B<If you're on MVS>,Introduce the F<.tar.gz> file into an HFS as binary; don't translate fromASCII to EBCDIC.A. DECOMPRESS Decompress the file with C<gzip -d yourmodule.tar.gz> You can get gzip from http://www.s390.ibm.com/products/oe/bpxqp1.html.B. UNPACKUnpack the result with pax -o to=IBM-1047,from=ISO8859-1 -r < yourmodule.tarThe BUILD and INSTALL steps are identical to those for Unix. Somemodules generate Makefiles that work better with GNU make, which isavailable from http://www.mks.com/s390/gnu/index.htm.=back=head1 PORTABILITYNote that not all modules will work with on all platforms.See L<perlport> for more information on portability issues.Read the documentation to see if the module will work on yoursystem. There are basically three categoriesof modules that will not work "out of the box" with allplatforms (with some possibility of overlap):=over 4=item *B<Those that should, but don't.> These need to be fixed; considercontacting the author and possibly writing a patch.=item *B<Those that need to be compiled, where the target platformdoesn't have compilers readily available.> (These modules containF<.xs> or F<.c> files, usually.) You might be able to findexisting binaries on the CPAN or elsewhere, or you mightwant to try getting compilers and building it yourself, and thenrelease the binary for other poor souls to use.=item *B<Those that are targeted at a specific platform.>(Such as the Win32:: modules.) If the module is targetedspecifically at a platform other than yours, you're outof luck, most likely.=backCheck the CPAN Testers if a module should work with your platformbut it doesn't behave as you'd expect, or you aren't sure whether ornot a module will work under your platform. If the module you wantisn't listed there, you can test it yourself and let CPAN Testers know,you can join CPAN Testers, or you can request it be tested. http://testers.cpan.org/=head1 HEYIf you have any suggested changes for this page, let me know. Pleasedon't 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 toanswer or even acknowledge all your questions. Contact the moduleauthor instead, or post to comp.lang.perl.modules, or ask someonefamiliar with Perl on your operating system.=head1 AUTHORJon Orwantorwant@tpj.comThe Perl Journal, http://tpj.comwith invaluable help from Brandon Allbery, Charles Bailey, GrahamBarr, Dominic Dunlop, Jarkko Hietaniemi, Ben Holzman, Tom Horsley,Nick Ing-Simmons, Tuomas J. Lukka, Laszlo Molnar, Chris Nandor, AlanOlsen, Peter Prymmer, Gurusamy Sarathy, Christoph Spalinger, DanSugalski, Larry Virden, and Ilya Zakharevich.First version July 22, 1998Last Modified August 22, 2000=head1 COPYRIGHTCopyright (C) 1998, 2000 Jon Orwant. All Rights Reserved.Permission is granted to make and distribute verbatim copies of thisdocumentation provided the copyright notice and this permission notice arepreserved on all copies.Permission is granted to copy and distribute modified versions of thisdocumentation under the conditions for verbatim copying, provided alsothat they are marked clearly as modified versions, that the authors'names and title are unchanged (though subtitles and additionalauthors' names may be added), and that the entire resulting derivedwork is distributed under the terms of a permission notice identicalto this one.Permission is granted to copy and distribute translations of thisdocumentation into another language, under the above conditions formodified versions.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?