Installing Ruby on Rails on Ubuntu ERROR: While executing gem … (Gem::GemNotFoundException)
If you run into this error:
ERROR: While executing gem ... (Gem::GemNotFoundException)
Could not find rails (> 0) in any repository
while running the command:
CODE:
-
sudo gem install rails --include-dependencies
just run the same command again and all should be good.
I had the same problem installing Rails on Ubuntu, but solved the issue by using apt-get:
$ sudo apt-get install rails
Keith Kim
21 Nov 08 at 1:27 pm