in reply to Re^2: Perl Mod Install
in thread Perl Mod Install

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

Replies are listed 'Best First'.
Re^4: Perl Mod Install
by CountZero (Bishop) on Jul 25, 2006 at 21:17 UTC
    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