Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

running 'sudo gem list --local' and 'gem list --local' gives me differing results, my gem path is set to my home folder and only contain the gems from 'gem list --local'.

So it's probably not good to have gems installed in different directories on my computer, should I have the gem path set differently? and should I always use sudo when installing something?

my ~/.profile
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
export PATH="/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:$PATH"

bash_profile is empty

share|improve this question
I think this is a valid question for those of us who have to use a gem that requires root privileges. – Kelly Aug 17 '11 at 14:37

1 Answer

up vote 51 down vote accepted

Contrary to all the other posts I suggest NOT using sudo when installing gems.

Instead I recommend you install rvm and start a happy life with portable gem homes and different version of ruby all living under one roof.

For the uninitiated:

RVM is a command line tool which allows us to easily install, manage and work with multiple ruby environments and sets of gems.

Edit: The reason why installing gems with sudo is worse than just gem install is because it installs the gems for ALL USERS as root. This might be fine if you're the only person using the machine, but if you're not it can cause weirdness.

If you decide you want to blow away all your gems and start again it's much easier, and safer, to do so as a non-root user.

If you decide you want to use RVM then using sudo will cause all kinds of weirdness because each ruby version you install through RVM has it's own GEM_HOME.

Also, it's nice if you can make your development environment as close to your production environment as possible, and in production you'll most likely install gems as a non-root user.

share|improve this answer
5  
+1 for the rvm suggest, but -1 for the confusing condemnation of the alternate possibility of just using sudo – floyd Jan 22 '10 at 18:13
It's really not that confusing. rvm.beginrescueend.com/gems – jonnii Jan 22 '10 at 18:22
@floyd, updated the post with more reasons to not use sudo. – jonnii Jan 22 '10 at 18:29
4  
Ok, but all your reasons boil down to "because RVM is so great" not because using sudo is especially harmful. The only time you wouldn't want to is in the specific situation that you're on a shared computer. If you want to recommend rvm just do that. No need to resort to FUDD. – floyd Jan 22 '10 at 18:56
2  
I try not spread FUD, and I tried to give non-RVM reasons, I apologise if it seems that way. – jonnii Jan 22 '10 at 19:19
show 1 more comment

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.