0

I'm new in ROR. So when I'm trying to install ROR. when I try to start rails(rails s) I get such error:

Could not find gem 'sqlite3 (>= 0) ruby' in the gems available on this machine.
Run `bundle install` to install missing gems.

P.S. I'm working on Ubuntu 12.04
Ganesh Kunwar
  • 2,643
  • 2
  • 20
  • 36

2 Answers2

0

try

sudo apt-get install libsqlite3-dev

and

sudo gem install sqlite3-ruby

and then Run

bundle install

you just read error messages instruct you to.

Run `bundle install` to install missing gems.
rails_id
  • 8,120
  • 4
  • 46
  • 84
0

The blog of RyanBigg is perfect to install ROR for ubuntu. So following link may help you.
http://ryanbigg.com/2010/12/ubuntu-ruby-rvm-rails-and-you/

Ganesh Kunwar
  • 2,643
  • 2
  • 20
  • 36