How to fix “Your Ruby version is 2.3.0, but your Gemfile specified 2.2.5” while server starting

前端 未结 11 1323
面向向阳花
面向向阳花 2020-12-04 15:30

I am getting this error while running server, how do I fix this?

11条回答
  •  庸人自扰
    2020-12-04 16:01

    Two steps worked for me:

    gem install bundler
    
    bundle install --redownload # Forces a redownload of all gems on the gemfile, assigning them to the new bundler
    

提交回复
热议问题