我尝试运行服务器,但这个结果总是出现在我身上
could not find compatible versions for gem "multi_json":
In Gemfile:
rails (= 3.2.6) ruby depends on
multi_json (~> 1.0) ruby
我有轨道3.2.6 我尝试使用捆绑更新但结果相同
答案 0 :(得分:3)
在Gemfile中添加gem "multi_json"
删除Gemfile.lock文件
然后运行bundle install
这有助于我克服上述错误。
答案 1 :(得分:0)
在捆绑包中找到multi_json的最低兼容版本。在我的情况下它是1.3.0所以我将以下内容添加到我的Gemfile
gem "multi_json", "~> 1.3.0"
然后运行
bundle update multi_json
这将解锁冲突版本中的multi_json,并根据最低兼容版本安装捆绑包。