smoothdvd
smoothdvd

Reputation: 2448

gem cleanup shows error: Unable to uninstall bundler-1.0.21 when upgrade to bundler-1.0.22

gem cleanup report error:

Attempting to uninstall bundler-1.0.21
Unable to uninstall bundler-1.0.21:
    Gem::InstallError: gem "bundler" is not installed

But I already cleanuped bundler 1.0.21 and upgrade to bundler 1.0.22.

I use rvm 1.10.2, ruby 1.9.3-p0, under Mac OS X 10.7.3.

Update:

I resolve this problem with the answer link

rvm gemset use global

gem uninstall xxx

Upvotes: 3

Views: 1931

Answers (3)

Jellicle
Jellicle

Reputation: 30216

rvm @global do gem uninstall bundler

Upvotes: 2

cnikolaou
cnikolaou

Reputation: 3992

Happened to me as well and solved it using:

rvm gem set use global

then

gem install bundler

Upvotes: 1

nkm
nkm

Reputation: 5914

It seems like cleanup command is unable to find out the path, did you try to uninstall using gem uninstall command?

Following link might help you.

Upvotes: 0

Related Questions