0
我創建了一個新的Rails應用程序,然後運行bundle
,並且該包成功完成。然後我修改了byebug條目從在修改Gemfile後出現「RuntimeError:無法找到滿足byebug(> = 0)的規格」
gem 'byebug', platform: :mri
到
gem 'byebug', platform: [:mri, :mingw, :x64_mingw]
,使其適用於Windows。
然後,我又跑bundle
和我越來越RuntimeError: Unable to find a spec satisfying byebug (>= 0) in the set. Perhaps the lockfile is corrupted?
爲什麼會出現這種情況,我該如何解決這個問題(沒有解開的Gemfile修改)?