0

我正在尝试安装一些 perl 模块作为Circos设置的一部分。我在终端中使用 cpan 安装模块,虽然初始设置似乎进展顺利,但在安装的最后一步,即编写 Makefile 时,所有模块都失败了。

这是错误的样子:

Checking if your kit is complete...
Looks good
Writing Makefile for Font::TTF
Can't exec "make": No such file or directory at /System/Library/Perl/5.12/CPAN/Distribution.pm line 2026.
MHOSKEN/Font-TTF-1.02.tar.gz
make -- NOT OK
'YAML' not installed, will not store persistent state
Running make test
Can't test without successful make
Running make install
Make had returned bad status, install seems impossible
Failed during this command:
MHOSKEN/Font-TTF-1.02.tar.gz                 : make NO

我认为唯一的选择可能是手动安装模块而不是使用 cpan,但我认为在这里提出问题可能值得一试。

4

2 回答 2

1

进一步了解 G. Cito 的回答/问题:

如果您使用的是 Mac OS/X,这个旧答案可能会为您解决问题,因为在相应的情况下会引发完全相同的错误:

https://stackoverflow.com/a/6767528/2352071

于 2013-05-24T09:42:22.683 回答
1

似乎 /System/Library/Perl/5.12/CPAN/Distribution.pm 正在尝试找到您系统的“make”命令。由于您使用的是 Mac OS/X,因此实际安装了“make”,还是需要添加一些开发人员工具?

于 2013-05-24T09:39:18.367 回答