Confused with rake error in Rails 3

后端 未结 5 1621
走了就别回头了
走了就别回头了 2020-12-31 13:35

Noob trying to decipher what to do with the following error:

rake aborted! You have already activated rake 0.9.1, but your Gemfile requires rake 0.8.7. Consider usin

5条回答
  •  时光取名叫无心
    2020-12-31 14:07

    Try running bundle exec rake instead of just rake. This error will occur when you have a newer version of rake installed on your computer than the one specified in your Gemfile (or Gemfile.lock)

提交回复
热议问题