July 15, 2021 . 1 MIN READ
You have already activated rake 0.9.6, but your Gemfile requires rake 10.1.0. Using bundle exec may solve this
| Before continue reading, I must says that I already read and tried similar questions and answers on google & stackoverflow.
My problem is that: · bundle install or update does nothing · gem uninstall rake refuses because rake is a default gem · I cannot use bundle exec for all my commands Any other idea ?! ruby bundler
|
|||||||||
|
activeoldestvotes
| up vote15down vote | At the root of project, do:
gem list rakeYou will see probably more than one version. If so, then remove the version you don’t need (i.e. 0.9.6) by command: gem uninstall rakeit will ask which version to remove. Or try doing bundle update rake |