1

我在雪豹中使用macports。我想安装某些 perl 模块以便能够运行脚本。确切地说是 DateTime 模块。我该怎么做呢?我尝试使用以下命令。

perl -MCPAN -e shell
cpan > install DateTime

但它仍然说找不到 DateTime.pm。我做错了什么?

编辑:我认为我没有正确配置 CPAN。我得到了错误

Can't locate Module/Build.pm in @INC (@INC contains: /opt/local/lib/perl5/site_perl/5.8.9/darwin-2level /opt/local/lib/perl5/site_perl/5.8.9 /opt/local/lib/perl5/site_perl /opt/local/lib/perl5/vendor_perl/5.8.9/darwin-2level /opt/local/lib/perl5/vendor_perl/5.8.9 /opt/local/lib/perl5/vendor_perl /opt/local/lib/perl5/5.8.9/darwin-2level /opt/local/lib/perl5/5.8.9 .) at Build.PL line 5.
BEGIN failed--compilation aborted at Build.PL line 5.
Warning: No success on command[/opt/local/bin/perl Build.PL ]
Warning (usually harmless): 'YAML' not installed, will not store persistent state
  DROLSKY/DateTime-0.61.tar.gz
  /opt/local/bin/perl Build.PL  -- NOT OK
Running Build test
  Make had some problems, won't test
Running Build install
  Make had some problems, won't install
Could not read '/Users/xxxxxx/.cpan/build/DateTime-0.61-ZNYzBn/META.yml'. Falling back to other methods to determine prerequisites
  Warning: CPAN.pm discovered Module::Build as undeclared prerequisite.
  Adding it now as such.

我需要先做点别的吗?

4

3 回答 3

3

最简单的解决方案,因为您使用的是 macports 中的 perl,所以也可以从 macports 安装 DateTime:

sudo port install p5-datetime

于 2011-02-04T19:52:50.830 回答
2

DateTime 使用 META.json - 尚不支持。所以先安装 Module::Build 。升级 CPAN 也是一个好主意。

于 2010-08-26T18:25:46.673 回答
0

你最好检查一下你的防火墙配置。CPAN 对服务器的访问可能会被阻止。无论如何,您可以下载并手动安装模块:http ://search.cpan.org/dist/DateTime/

于 2010-08-26T16:47:12.827 回答