CENTOS6.4 安装SVN1.8.17时,遇到如下错误:
checking perl version... 5010001
Can't locate ExtUtils/Embed.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .).
BEGIN failed--compilation aborted.
checking for ctypesgen.py... none
.......
解决方法如下:
yum install cpan -y
yum install perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker -y
cpan ExtUtils::Install
如果不想用cpan安装,那就使用下面这条命令
yum install perl-ExtUtils-Embed -y