carton環境下でNet::SSH::PerlとMath::GMPを正しくインストールする方法

  • 2015-9-3
perl
#cpanfile
requires ‘Net::SSH::Perl’;
carton install

ログを見てみると

! Installing the dependencies failed: Module ‘Math::GMP’ is not installed

ふむふむ

#cpanfile
requires ‘Math::GMP’;

carton install

#build.log
Can’t link/include C library ‘gmp.h’, ‘gmp’, aborting.

ぬ・・・
/usr/include/ に gmpのヘッダファイルが居ない・・。

yum -y install gmp-devel

(^q^)

これでcarton installすると無事インストールできます

関連記事

ページ上部へ戻る