views:

266

answers:

2

After Installing Rails 3, I get the following error regarding Sqlite3 when I try to do a migrate:

dlsym(0x1037e5f10, Init_sqlite3_native): symbol not found - /Library/Ruby/Gems/1.8/gems/sqlite3-ruby-1.3.0/lib/sqlite3/sqlite3_native.bundle

I am using Snow Leopard, if that makes a difference.

A: 

I'm not sure how it's done with Snow Leopard but you need to install The sqlite dev package, libsqlite3-dev

Then install the gem, sqlite3-ruby

CountCet
A: 

Just got to the GEMFILE inside you project and comment out the gems that you do not require.

Hitesh Manchanda