11

嗨,我正在研究 API https://developers.supportbee.com/platform/overview

在做 的时候bin/sbapp new APP_SLUG 我得到了错误

/home/nitesh/.gem/ruby/1.9.1/gems/bundler-1.2.3/lib/bundler/spec_set.rb:90:in `block in materialize': Could not find multi_json-1.3.6 in any of the sources (Bundler::GemNotFound)

之后我再次尝试 gem install multi_json ,然后再次得到错误

Successfully installed multi_json-1.5.0
/usr/local/share/ruby/site_ruby/rubygems/core_ext/kernel_require.rb:45:in `require': cannot load such file -- json/pure (LoadError)
4

3 回答 3

24

安装导轨时出现此错误。我通过运行gem install json_pure 然后gem install rails再次运行来解决它。

于 2012-12-18T07:36:57.103 回答
0

我正在使用加入 1.7.7 并且有相同的错误,所以我通过将 json 更新到版本 1.8.1 来修复:

vim Gemfile

将 json 版本编辑为“1.8.1”

gem install bundler
bundle install

和这项工作!

于 2014-01-13T10:24:09.457 回答
0

你应该尝试做一个

bundle install 

首先然后运行为

bundle exec bin/sbapp new APP_SLUG
于 2012-12-12T16:09:16.750 回答