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.

I have installed gem on Ubuntu 10.10 32 bit with

apt-get install gem -y

But when I try to run

gem install something.gem

I get the error of the command not being found.

bash: gem: command not found

I installed gem, is there any reason it is saying it can't find the command?

These files were install by gem package

http://pastie.org/3483416

share|improve this question
What does echo $PATH say? – Karl Barker Feb 28 '12 at 16:26
It says /usr/local/rvm/gems/ruby-1.9.3-p125/bin:/usr/local/rvm/gems/ruby-1.9.3-p125@glob‌​al/bin:/usr/local/rvm/rubies /ruby-1.9.3-p125/bin:/usr/local/rvm/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin‌​:/usr/bin:/sbin:/bin:/usr/ga mes – awmusic12635 Feb 28 '12 at 16:56

4 Answers

up vote 14 down vote accepted

Are you wanting ruby gems? If so, you need to install libgemplugin-ruby and then the ruby 'gem' program will be in your path:

aptitude install libgemplugin-ruby
share|improve this answer

The following command installs ruby gem for ubuntu:

apt-get install libgemplugin-ruby

I did it after ruby was installed.

share|improve this answer

The following command will give you the list of files that the gem package installed:

dpkg -L gem

that should help you troubleshoot.

share|improve this answer
Ok, I ran it and got a list of files – awmusic12635 Feb 28 '12 at 21:42
I edited the post with a list of the files – awmusic12635 Feb 28 '12 at 21:57

try

$ /usr/bin/pd-gem

or

$ pd-gem

share|improve this answer

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.