http://www.perlmonks.org?node_id=1055945


in reply to Math::Pari module

I guess that you are actually trying to install Net::SSH::Perl for which, Math::Pari is a prerequisite.

Nowadays, using Net::SSH::Perl is not the best thing you can do. It is an old module, mostly unmaintained, with lots of unsolved known bugs.

Instead, try using Net::SSH2, Net::OpenSSH or Net::SSH::Any.

Replies are listed 'Best First'.
Re^2: Math::Pari module
by finfan (Acolyte) on Sep 27, 2013 at 16:34 UTC

    Thanks everyone for the help. The problem ended up being SELinux not liking the Math::Pari module. Just did a setenforce 0, installed Net::SSH::Perl with the force command (CPAN Shell), and then turned selinux back on. Working great.
    Superdoc, appreciate the tip on the other SSH options. I've always found Net::SSH:Perl to be a bit cumbersome, but it's worked for me. Moving forward I will look at using your suggestions.

Re^2: Math::Pari module
by finfan (Acolyte) on Sep 27, 2013 at 18:46 UTC

    Thanks everyone for the help. The problem ended up being SELinux not liking the Math::Pari module. Superdoc, appreciate the tip on the other SSH options. I've always found Net::SSH:Perl to be a bit cumbersome, but it's worked for me. Moving forward I will look at using your suggestions.