Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to SSH using a Perl script but I get the following error.

Can't locate Net/SSH/Perl.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 /usr/local/lib/site_perl .) at newone.pl line 3. BEGIN failed--compilation aborted at newone.pl line 3.

What does the above error mean?

share|improve this question

1 Answer

Your code is fine, although I haven't checked it as the error is due to a missing perl module.

What's the easiest way to install a missing Perl module?

share|improve this answer
3  
Or cpan install Net::SSH, or perl -MCPAN -we 'install "Net::SSH"', or ppm install Net::SSH if you're on Windows. – Pedro Silva Aug 10 '11 at 13:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.