On 1/26/06, Mazhar <[EMAIL PROTECTED]> wrote:
> Hi Folks,
>         I have downloaded the tar.gz module from CPAN to ssh a remote unix
> machine. After the same i run the >>perl makefile.pl and below was the
> output of the command
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> Warning: prerequisite Convert::ASCII::Armour 1.4 not found.
> Warning: prerequisite Data::Buffer 0.04 not found.
> Warning: prerequisite Digest::BubbleBabble 0.01 not found.
> Warning: prerequisite IO::Select::Trap 0.02 not found.
> Warning: prerequisite Net::SSH::Perl 1.23 not found.
> Writing Makefile for Net::SSH::W32Perl
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
snip

The proper invocation to get a downloaded Perl module installed is:

perl Makefile.PL
make
make test
make install

You must also stop and satisfy and errors or warnings you recieve.  In
this case you do not have modules installed that are necessary for
Net::SSH::W32Perl to work.  In general you are better served by
running

perl -MCPAN -e install Net::SSH::W32Perl

Which will download, compile, test, and install all modules required
by Net::SSH::W32Perl or (if you are using Activestate Perl) running

ppm install Net::SSH::W32Perl

Which should download and install precompiled versions of the modules.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to