vote up 1 vote down star
1

I'm trying to install rails on Ubuntu 9.10.

gem list --local

*** LOCAL GEMS ***

actionmailer (2.3.4, 2.3.2)
actionpack (2.3.4, 2.3.2)
activerecord (2.3.4, 2.3.2)
activeresource (2.3.4, 2.3.2)
activesupport (2.3.4, 2.3.2)
rack (1.0.1)
rails (2.3.4, 2.3.2)
rake (0.8.7)
sqlite3-ruby (1.2.5)

rake
The program 'rake' is currently not installed.  You can install it by typing:
sudo apt-get install rake
rake: command not found

How do I solve this?

flag
@MR: But it is listed as an installed gem. – DigitalRoss Nov 3 at 3:05

2 Answers

vote up 2 vote down check

You need to add /var/lib/gems/1.8/bin to your PATH. Try this command:

export PATH=$PATH:$HOME/bin:/var/lib/gems/1.8/bin

After that rake should work.

You can add this line to your ~/.bashrc so that you don't have to type in this command each time.

link|flag
THANKYOUTHANKYOUTHANKYOU I have been having this problem for MONTHS and stumbled over this Q on accident... – Chris McCall Nov 3 at 16:37
vote up 0 vote down

Gem is complaining about the rake program (i.e. executable), not the rake gem (you have the latter already installed).

That means that you have to add rake exec to the PATH. Possible rake bin location is /var/lib/gems/1.8/bin/rake. Add it to your PATH then:

export PATH=${PATH}:/var/lib/gems/1.8/bin

You can also install Rake from the Ubuntu repository (as suggested in the gem output):

sudo apt-get install rake
link|flag

Your Answer

Get an OpenID
or

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