Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
qichunren@zhaobak:~> gem install hpricot
ERROR:  While executing gem ... (Gem::FilePermissionError)
    You don't have write permissions into the /opt/ruby-enterprise-1.8.7/lib/ruby/gems/1.8 directory.

Current login user is qichunren, and qichunre user have write permission with .gem dir.I would like to know why gem not install files into my home .gem dir first? Why my gem common first want to install files into /opt/ruby-enterprise-1.8.7/lib/ruby/gems/1.8

share|improve this question

2 Answers

up vote 19 down vote accepted

Use sudo to acquire the requisite permissions for a normal gem install.

sudo gem install hpricot

Otherwise, you will need set explicit configuration parameters to indicate where the gem should be installed to.

share|improve this answer
14  
Do not use sudo because you will install them as root and not have access to them when you're using your normal user. Use RVM and gemsets. – rxgx Apr 8 '11 at 7:44
3  
e.g. rvm gem install hpricot – AJP Aug 5 '12 at 23:17
$ \curl -L get.rvm.io – Aamir Afridi Apr 18 at 11:35

Try setting GEM_HOME and GEM_PATH to ~/.gem, following these directions.

share|improve this answer
Much safer! Thanks! – Munhitsu Apr 30 '12 at 22:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.