显然,我的Perl模块列表中有Clone。我为什么要犯这个错误?
我在Mac型机 (山狮)上运行Perl5.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文件重新安装,但是我得到了错误:
延迟符号绑定失败:符号未找到:_Perl_Gthr_key_ptr
网上有很多关于这个错误的问题,但是很少有解决办法.
发布于 2014-05-04 21:36:28
我也犯了同样的错误。最后,使用该命令完成一些工作。
sudo perl -MCPAN -e 'install Clone'您可能会遇到一些额外的错误,因为缺少Perl模块。在一些情况下,我只能在shell中安装库。这些是(字体:TTF和文本::Format)
我通过运行
sudo perl -MCPAN -e shell
>install Font:TTF
>install Text::Formathttps://stackoverflow.com/questions/21542852
复制相似问题