Can't locate ExtUtils/Embed.pm in @INC (@INC contains: /usr/local/lib64/perl5


 

 
  今天在服务器上安装nginx,报下面的错误:Can't locate ExtUtils/Embed.pm in @INC (@INC contains: /usr/local/lib64/perl5,以为是没有装perl,就去yum install perl perl-dev都给装了,还是没有解决问题,最后找到个老外的论坛上才知道怎么解决.
  系统:centos 6.3 64位
解决办法:
yum install cpan -y
yum install perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker -y
cpan ExtUtils::Install
 
如果不想用cpan安装,那就使用下面这条命令
yum install perl-ExtUtils-Embed -y
原文地址:https://www.cnblogs.com/myfield/p/4476327.html