CodeName_88 0 Report post Posted August 24, 2004 How do I install perl modules?? Share this post Link to post Share on other sites
mathmate 0 Report post Posted March 4, 2007 It depends on what you already have.If you run on Windows XP and would like to install ActivePerl, you can follow the instructions shown in:http://forums.xisto.com/no_longer_exists/go under Programming Languages (Perl) and under installation.For the Perl (CPAN) modules, if you have ActivePerl installed in the default directory of c:/Perl, then use the DOS screen , docd c:/Perl/site/libfollowed by ppmYou will see a PPM> prompt from which you can get help by typing help.To search for a particular subject, dosearch <subject>, for examplesearch cpanthe first token of each line displayed is the name of the module that you can install, and all you have to do is to typeinstall <name of module>, for exampleinstall cpanIf you run under Linux or other platforms, the proedure should be similar, but the directories may differ.Note also that under ActivePerl, the modules available are different from those displayed under the Perl tutorial.The following link includes many useful documents worth reading:http://perldoc.perl.org/from which the installation of modules is further documented in:http://search.cpan.org/dist/perl/pod/perlmodinstall.pod Share this post Link to post Share on other sites