Reputation: 3183
So I'm getting the following error whenever I run rake db:migrate
rake aborted! no such file to load -- sqlite3
I did some googling and found that I may not have sqlite3 installed, so I sudo port install sqlite3
and everything installs correctly, but when I go back to run db:migrate
again, I get the same error.
I'm running Rails 2.3.8 on ruby 1.8.7 with sqlite3 3.7.2. Any ideas?
Upvotes: 1
Views: 151
Reputation: 1833
Have you installed the sqlite3 gem? If you have, try uninstalling and reinstalling it.
Upvotes: 1