When i try to run the rails server it tells me i do not have sqlite3- ruby installed. when i run bundle install (which is the command it tells me to run) it install some things but then when i try it agian it does not work still. says its not there again. i even checked the ubuntu repos and installed the sqlite3-ruby1.9.1 package, wbut that did not fikx the probrlem. can anyone help my with this? -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Am 09.10.2010 um 19:15 schrieb augdawg:> When i try to run the rails server it tells me i do not have sqlite3- > ruby installed. when i run bundle install (which is the command it > tells me to run) it install some things but then when i try it agian > it does not work still. says its not there again. i even checked the > ubuntu repos and installed the sqlite3-ruby1.9.1 package, wbut that > did not fikx the probrlem. can anyone help my with this?You probably have messed up gem paths, especially if you have some gems installed as root, others installed as your user, and others still installed through apt. What does "gem list" return when run as your user and root? Same thing for "gem environment". Best, Felix -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 10-10-09 01:15 PM, augdawg wrote:> When i try to run the rails server it tells me i do not have sqlite3- > ruby installed. when i run bundle install (which is the command it > tells me to run) it install some things but then when i try it agian > it does not work still. says its not there again. i even checked the > ubuntu repos and installed the sqlite3-ruby1.9.1 package, wbut that > did not fikx the probrlem. can anyone help my with this? >use gem and not a ubuntu package manager to install gem, try sudo gem install sqlite3-ruby also this is how you should have installed other gems including rails sudo gem install rails if you can''t sudo using your account then try without sudo -- Kind Regards, Rajinder Yadav -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.