我正在CPAN中加载一个新模块,Net::Netconf
,但在安装此模块时,会发出错误Bundle::Expect
未找到。
我已经在Makefile.PL中提到了这个模块的所有依赖项,但是Bundle::Expect
给出了错误,它说这个模块没找到。
此模块是否还有其他名称,或者我必须在其他文件中提及依赖项,以便在安装模块时CPAN可以自动安装?
以下是我的Makefile.PL
use ExtUtils::MakeMaker;
our $VERSION = '0.01';
use 5.006;
WriteMakefile(
NAME => 'Net-Netconf',
AUTHOR => 'Juniper Networks, Inc',
VERSION_FROM => 'Makefile.PL',
PREREQ_PM =>
{ 'XML::LibXML' => '0', 'File::Which' => '0', 'Bundle::Expect' => '0', },
ABSTRACT => 'netconf libraries for perl',
);