4

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.

ただし、実行すると:

perl Build installdeps 

私は得る:

Can't open perl script "Build": No such file or directory

誰かが私がここで間違っていることについて何か考えがありますか?

4

1 に答える 1

6

Buildを実行した後に生成されるスクリプトですperl Build.PL。Perl なしで実行できます。

とにかく走れ:

Build installdeps

または (OS によって異なります):

./Build installdeps
于 2013-04-24T02:09:25.043 に答える