Can't sudo gem uninstall (you don't have write permissions)
I'm having trouble removing a gem from my system. When i ask gem where RedCloth is installed it says this:
pteng01:trunk mike$ gem list -d RedCloth
*** LOCAL GEMS ***
RedCloth (3.0.4)
Author: why the lucky stiff
Rubyforge: http://rubyforge.org/projects/redcloth
Homepage: http://www.whytheluckystiff.net/ruby/redcloth/
Installed at: /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8
RedCloth is a module for using Textile and Markdown in Ruby. Textile
and Markdown are text formats. A very simple text format. Another
stab at making readable text that can be converted to HTML.
pteng01:trunk mike$
I tried
sudo gem uninstall --install-dir /System/L开发者_C百科ibrary/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8
and i get this error
ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions into the /usr/lib/ruby/gems/1.8/bin directory.
I ran
gem cleanup
and then enter
gem list -d RedCloth
which shows this
*** LOCAL GEMS ***
RedCloth (4.2.3)
Author: Jason Garber
Rubyforge: http://rubyforge.org/projects/redcloth
Homepage: http://redcloth.org
Installed at: /opt/local/lib/ruby/gems/1.8
RedCloth-4.2.3 - Textile parser for Ruby. http://redcloth.org/
looks like it wasnt really at the previous location.
精彩评论