安装perl模块Class-Load-XS

我尝试手动安装模块Class-Load-XS-0.04.我看到以下错误

$perl Build.PL
Warning: ExtUtils::CBuilder not installed or no compiler detected
Proceeding with configuration,but compilation may fail during Build

然而,执行perl -e’使用ExtUtils :: CBuilder’非常好.我甚至尝试重新安装ExtUtils :: CBuilder,但它仍然无法正常工作.

能否请你帮忙?

解决方法

我尝试使用Win 7机器,当我执行perl Build.pl时,它会显示一些类似的警告:

collect2: ld returned 1 exit status
Checking prerequisites...
  requires:
    !  Class::Load is not installed
  build_requires:
    !  Class::Load is not installed
    !  Module::Implementation is not installed
    !  Test::Fatal is not installed
    !  Test::Requires is not installed

ERRORS/WARNINGS FOUND IN PREREQUISITES.  You may wish to install the versions
of the modules indicated above before proceeding with this installation

然后我安装了上面提到的模块,然后事情就好了.

您可以先尝试安装这些模块.希望能帮助到你.

相关文章

1. 如何去重 #!/usr/bin/perl use strict; my %hash; while(...
最近写了一个perl脚本,实现的功能是将表格中其中两列的数据...
表的数据字典格式如下:如果手动写MySQL建表语句,确认麻烦,...
巡检类工作经常会出具日报,最近在原有日报的基础上又新增了...
在实际生产环境中,常常需要从后台日志中截取报文,报文的形...
最近写的一个perl程序,通过关键词匹配统计其出现的频率,让...