Installation of Net::sftp

Installation of Net::sftp

am 05.06.2006 12:20:11 von Shanmugt

Hello All,
Have you ever tried installing the perl Net::sftp package.

It fails in the installation of one of its dependent module Math::Pari.
Do you have any idea how to proceed ?


Regards,
Shanmugt.

Re: Installation of Net::sftp

am 06.06.2006 17:07:47 von v3xt0r

Shanmugt wrote:
> Hello All,
> Have you ever tried installing the perl Net::sftp package.
>
> It fails in the installation of one of its dependent module Math::Pari.
> Do you have any idea how to proceed ?
>
>
> Regards,
> Shanmugt.

You need to install the dependent module(s) 1st.

From a command line...

$ perl -MCPAN -e 'install Math::Pari';
$ perl -MCPAN -e 'install Net::SFTP'

I believe the (perl -MCPAN -e 'install Module::Name') function will even
ask you if you want to install dependencies as well.

Cheers!