4

我一直在努力在我的 Mac 上安装 jekyll,对 ruby​​ 或配置/调试这些消息不太了解。

运行“sudo gem install jekyll”时出现以下信息

Building native extensions.  This could take a while...
ERROR:  Error installing jekyll:
    ERROR: Failed to build gem native extension.

    /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby extconf.rb
creating Makefile

make "DESTDIR="
make: *** No rule to make target `/include/universal-darwin13/ruby/config.h', needed by `porter.o'.  Stop.


Gem files will remain installed in /Library/Ruby/Gems/2.0.0/gems/fast-stemmer-1.0.2 for inspection.
Results logged to /Library/Ruby/Gems/2.0.0/gems/fast-stemmer-1.0.2/ext/gem_make.out

“gcc --version”返回以下内容:

Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.0 (clang-500.2.76) (based on LLVM 3.3svn)
Target: x86_64-apple-darwin13.0.0
Thread model: posix
4

2 回答 2

2

使用这个命令:

$ sudo xcode-select -r 

然后

$ sudo gem install jekyll

希望这对您有所帮助。

于 2013-11-16T10:12:12.883 回答
0

除了升级 xcode,正如 rayrashmi 建议的那样,您必须实际打开它,以便正确安装命令行工具。

(我假设你在升级到 Mavericks 之前从 xcode 安装了命令行工具,如果你还没有它们Preferences → Downloads → Components这里的官方信息。)

然后,如果您还没有升级 gem 并安装 jekyll 和您正在使用的任何其他库,比如颜料,只需升级 gem。

正如他们所说,“为我工作”。

于 2013-10-29T07:42:02.267 回答