我嘗試運行的服務器,但這樣的結果總是出現在我找不到兼容版本的寶石「multi_json」:
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 我嘗試使用捆綁更新,但同樣的結果
我嘗試運行的服務器,但這樣的結果總是出現在我找不到兼容版本的寶石「multi_json」:
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 我嘗試使用捆綁更新,但同樣的結果
在Gemfile中添加gem "multi_json"
刪除Gemfile.lock的文件
然後運行bundle install
這幫助我克服了上述錯誤。
查找捆綁包中multi_json的最低兼容版本。在我的情況下,它是1.3.0,所以我增加了以下我的Gemfile
gem "multi_json", "~> 1.3.0"
然後運行
bundle update multi_json
這將從衝突版本解鎖multi_json並安裝根據你的包最低兼容版本。