- 2015-9-3
#cpanfile
requires ‘Net::SSH::Perl’;
requires ‘Net::SSH::Perl’;
carton install
ログを見てみると
! Installing the dependencies failed: Module ‘Math::GMP’ is not installed
ふむふむ
#cpanfile
requires ‘Math::GMP’;
requires ‘Math::GMP’;
carton install
#build.log
Can’t link/include C library ‘gmp.h’, ‘gmp’, aborting.
Can’t link/include C library ‘gmp.h’, ‘gmp’, aborting.
ぬ・・・
/usr/include/ に gmpのヘッダファイルが居ない・・。
yum -y install gmp-devel
(^q^)
これでcarton installすると無事インストールできます