Reputation: 375
I am new to ruby on rails and trying to install the bundle in my rails app and getting the same error this whole time ..
Bundler could not find compatible versions for gem "bundler": In Gemfile: bundler (= 1.0.18) ruby
Current Bundler version: bundler (1.7.4)
This Gemfile requires a different version of Bundler.
Perhaps you need to update Bundler by running gem install bundler
?
I have tried almost each suggestions that've been suggested but none so far worked for me. Can anybody help..?? Thank you in advance..
Upvotes: 0
Views: 292
Reputation: 21795
Usually, Bundler does not need to be on Gemfile.
You can remove the line that contains bundler
in Gemfile, then run bundle
again.
The reason this is failing is because your system has probably a newer version of bundler than the Gemfile is asking for.
Upvotes: 1