Reputation: 6826
My dev environment is hosed and I just want to start from zero. Any time I run brew
or gem
, I get this error message:
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- bundler/setup (LoadError)
from /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:55:in `require'
Can anyone help me here? I'm at my wit's end. I just want to blow it all away and reinstall it.
Upvotes: 0
Views: 55
Reputation: 15967
That's your local ruby version that comes packaged with osx. There's no reason to remove that, you just need to use something like rvm or rbenv which will install all your gem dependencies according to the ruby version you're working in.
Most likely you've got a compatibility issue withe a gem and ruby 2.0.0. I personally use rvm so I'd do this:
\curl -sSL https://get.rvm.io | bash -s stable --ruby
Checkout the install guide here
Upvotes: 1