0

我的 Perl 模块列表中显然有Clone。为什么我会收到此错误?

我在Mac OS X v10.8 (Mountain Lion) 上运行 Perl 5.16。

lraven$ cat run.out

*** REQUIRED MODULE IS MISSING ***

You are missing the Perl module Clone. Use CPAN to install it as described in this tutorial

http://www.circos.ca/documentation/tutorials/configuration/perl_and_modules


lraven$ instmodsh
Installed modules are:
   App::cpanminus
   Bundle::NetSNMP
   Clone
   Config::General
   DBI
   ExtUtils::MakeMaker
   ...

我尝试从 .tar 文件重新安装,但出现错误:

dyld:惰性符号绑定失败:找不到符号:_Perl_Gthr_key_ptr

网上有很多关于这个错误的问题,但很少有解决方案......

4

1 回答 1

0

我遇到了同样的错误。终于可以使用命令进行工作了。

sudo perl -MCPAN -e 'install Clone'

由于缺少 Perl 模块,您可能会遇到一些额外的错误。在少数情况下,我只能从 shell 中安装库。这些是(字体:TTF 和文本::格式)

我通过运行安装了这些

sudo perl -MCPAN -e shell
>install Font:TTF
>install Text::Format
于 2014-05-04T21:36:28.140 回答