2

我有一个现有的 Ruby On Rails 项目,我正在尝试启动并运行,但是当我尝试迁移数据库时它说:

$ rake db:migrate 

Could not find json-1.6.5 in any of the sources

然后当我尝试安装特定的 gem 时,它失败了!

$ gem install json -v '1.6.5'

Fetching: json-1.6.5.gem (100%)
Building native extensions.  This could take a while...
ERROR:  Error installing json:
        ERROR: Failed to build gem native extension.

        /Users/dev/.rvm/rubies/ruby-1.9.2-p136/bin/ruby extconf.rb
creating Makefile

make
sh: make: command not found


Gem files will remain installed in /Users/dev/.rvm/gems/ruby-1.9.2-p136@rails3/gems/json-1.6.5 for inspection.
Results logged to /Users/dev/.rvm/gems/ruby-1.9.2-p136@rails3/gems/json-1.6.5/ext/json/ext/parser/gem_make.out
4

2 回答 2

2

看起来您缺少一些命令行工具。

验证您是否已安装 make

$ whereis make

应该返回类似:

/usr/bin/make

$ make -v

应该类似于:

GNU Make 3.81
Copyright (C) 2006  Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

This program built for i386-apple-darwin11.0

如果你没有看到这样的东西,也许你应该看看这篇文章https://stackoverflow.com/a/10217910/335523

于 2012-05-18T11:00:06.990 回答
0

我认为您需要为ruby安装系统依赖包libjson- ruby。安装此软件包将解决此错误。

于 2012-05-18T09:43:31.220 回答