Thread

Posted on Wed Jan 25 19:33:55 2006 by maestro
Net-SSH-Perl-1.29 instalation
Hi there.

I'm trying to install this Net-SSH-Perl-1.29. However, I need a lot of other modules as well, in order to install this one.

Warning: prerequisite Convert::PEM 0.05 not found.
Warning: prerequisite Crypt::DH 0.01 not found.
Warning: prerequisite Crypt::DSA 0.11 not found.
Warning: prerequisite Crypt::IDEA 0 not found.
Warning: prerequisite Digest::HMAC_MD5 0 not found.
Warning: prerequisite Digest::HMAC_SHA1 0 not found.
Warning: prerequisite Digest::SHA1 2.10 not found.
Warning: prerequisite Math::GMP 1.04 not found.
Warning: prerequisite Math::Pari 2.001804 not found.
Warning: prerequisite String::CRC32 1.2 not found.
Writing Makefile for Net::SSH::Perl

I can't use the following command because where I work there isn't a ftp proxy
perl -MCPAN -e 'install Net::SSH::Perl'
If there was a HTTP Mirror I think I could do this way.


Do I really have do download AND INSTALL the ".tar.gz" modules 1 by 1 (and also every dependency)?
Isn't there a better way to do this, such as downloading every module needed and installing all at the same time? How can I do this? And how do I know all the modules I need?

Thanks!

Direct Responses: 1719 | Write a response
Posted on Mon Jan 30 16:50:48 2006 by maestro in response to 1707
Re: Net-SSH-Perl-1.29 instalation
I've already solved my problem the hard way, downloading every dependency and installing it, one by one. Yes, it took some time...
Direct Responses: 1730 | Write a response
Posted on Wed Feb 1 13:25:48 2006 by rash in response to 1719
Re: Net-SSH-Perl-1.29 instalation
this has a MATH::GMP module as a dependency. there was a error while installing saying that gmp.h file not found. i downloaded this cpan.org site. do u have the complete module of this. if so please let me know the url.
Direct Responses: 1732 | Write a response
Posted on Wed Feb 1 19:32:02 2006 by maestro in response to 1730
Re: Net-SSH-Perl-1.29 instalation
Try this:

http://search.cpan.org/CPAN/authors/id/C/CH/CHIPT/Math-GMP-2.04.tar.gz

tar -zxof Math-GMP-2.04.tar.gz
cd Math-GMP-2.04.tar.gz
perl Makefile.pl
make
make test
make install

Direct Responses: 1919 | Write a response
Posted on Thu Mar 9 10:37:36 2006 by arnaud in response to 1732
Re: Net-SSH-Perl-1.29 instalation
Hi, I have the same problem and it doesn't work. gmp.h not found.
Direct Responses: 1920 | Write a response
Posted on Thu Mar 9 11:39:04 2006 by arnaud in response to 1919
Re: Net-SSH-Perl-1.29 instalation
it seems the problem was i hadn't the libgmp :) :

for debian :
apt-get install libgmp3 libgmp3-dev
Write a response