olivia | 20 Jul 08:06

no such file to load -- sqlite3


I followed a tutorial on lynda.com to build Hello World app on
Windows.

I got an error msg as follow when I loaded http://localhost:3000/say/hello

-----------------------------------------------------------
MissingSourceFile in SayController#hello
no such file to load -- sqlite3
-----------------------------------------------------------

I went to download sqlite3 but don't know where to install sqlite3.
Can someone help please?

Thanks!

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@...
To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Jason Torres | 20 Jul 10:41

Re: no such file to load -- sqlite3


olivia wrote:
> I followed a tutorial on lynda.com to build Hello World app on
> Windows.
> 
> I got an error msg as follow when I loaded 
> http://localhost:3000/say/hello
> 
> -----------------------------------------------------------
> MissingSourceFile in SayController#hello
> no such file to load -- sqlite3
> -----------------------------------------------------------
> 
> I went to download sqlite3 but don't know where to install sqlite3.
> Can someone help please?
> 
> Thanks!

That's a generic error for missing gems. DO this,

gem install sqlite3-ruby

or

sudo gem install sqlite3-ruby
--

-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
(Continue reading)

olivia | 21 Jul 03:45

Re: no such file to load -- sqlite3


I don't get it. Is it a code I put it somewhere? Help again!

If I am missing gems, how do I install it?

On Jul 20, 1:41 am, Jason Torres <rails-mailing-l...@...>
wrote:
> olivia wrote:
> > I followed a tutorial on lynda.com to build Hello World app on
> > Windows.
>
> > I got an error msg as follow when I loaded
> >http://localhost:3000/say/hello
>
> > -----------------------------------------------------------
> > MissingSourceFile in SayController#hello
> > no such file to load -- sqlite3
> > -----------------------------------------------------------
>
> > I went to download sqlite3 but don't know where to install sqlite3.
> > Can someone help please?
>
> > Thanks!
>
> That's a generic error for missing gems. DO this,
>
> gem install sqlite3-ruby
>
> or
>
(Continue reading)


Gmane