如何运行"构建installdeps"来安装缺少的先决条件

bru*_*lin 4 perl cpan bioperl

尝试运行Build.PL文件并获取以下内容,而不是不常见的错误消息:

Checking prerequisites...
  build_requires:
    !  Test::Most is not installed
  recommends:
    *  HTML::TableExtract is not installed
    *  Math::Random is not installed
    *  YAML 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

Run 'Build installdeps' to install missing prerequisites.
Run Code Online (Sandbox Code Playgroud)

但是当我跑步时:

perl Build installdeps 
Run Code Online (Sandbox Code Playgroud)

我明白了:

Can't open perl script "Build": No such file or directory
Run Code Online (Sandbox Code Playgroud)

谁有任何关于我在这里做错的想法?

ste*_*enl 5

Build是运行后生成的脚本perl Build.PL.你可以在没有Perl的情况下执行它.

赶紧跑:

Build installdeps
Run Code Online (Sandbox Code Playgroud)

或者(取决于您的操作系统):

./Build installdeps
Run Code Online (Sandbox Code Playgroud)