in reply to Perl Mod Install

If possible, try to install the module using CPAN. It's so much easier!

---
It's all fine and dandy until someone has to look at the code.

Replies are listed 'Best First'.
Re^2: Perl Mod Install
by mantra2006 (Hermit) on Jul 25, 2006 at 16:37 UTC
    Hello Thanks for the reply..where can I find information regarding CPAN? I went to CPAN.org site but couldn't find any useful info regarding my task
      On unix machines you typically install modules like this:
      perl -MCPAN -e 'install Net::SCP' # Or perl -MCPAN -e 'shell' install Net::SCP
      But since you are on a windows machine you should use ppm, which is provided with activeperl.

      ppm install Net-SCP
      Note that ppm likes Net-SCP instead of Net::SCP
        The majority of CPAN-modules on a Windows machine can be installed without problems through use of CPAN. I only used ppm for modules which need to be run through a C-compiler. Since ActiveState Perl now recognizes the MiniGW environment, you can even compile such modules through CPAN!

        CountZero

        "If you have four groups working on a compiler, you'll get a 4-pass compiler." - Conway's Law