Hi, I am trying Rails 3 and I am using RVM to manage the ruby versions. Using RVM I had installed ruby versions 1.8.7, 1.9.1 and 1.9.2 When I do "rails console" I am getting the following error and console isn''t starting: http://www.pastie.org/1026503 Since I dont require 1.9.1 any more to work with Rails 3, I un-installed it using the following command: rvm uninstall ruby-1.9.1 Then also, the console isn''t working. Please help. -- Posted via http://www.ruby-forum.com/. -- 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.
This error means you did not have the required dependencies to install readline during installation of ruby. If you can find the location of the ruby source files in your system, you can go to the ext/readline folder. In there there should be an extconf.rb which you can run with ruby extconf.rb This will fail but it will tell you what dependencies is missing. You would have to install those first. I don''t know what OS you are using but when I had this error in CentOS I had to install a few packages from yum before I could run extconf.rb successfully. After this it will generate a make file which is just like installing any other package from source. -- Posted via http://www.ruby-forum.com/. -- 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.
Kenneth wrote:> This error means you did not have the required dependencies to install > readline during installation of ruby. If you can find the location of > the ruby source files in your system, you can go to the ext/readline > folder. In there there should be an extconf.rb which you can run with > > ruby extconf.rb > > This will fail but it will tell you what dependencies is missing. You > would have to install those first. I don''t know what OS you are using > but when I had this error in CentOS I had to install a few packages from > yum before I could run extconf.rb successfully. After this it will > generate a make file which is just like installing any other package > from source.Kenneth, Thanks for the reply. I am using Ubuntu 10.04 and RVM to manage different ruby installations. I had to do: rvm package install readline rvm remove 1.9.2 rvm install 1.9.2 -C --with-readline-dir=/home/syed/.rvm/usr/ following the instructions here: http://rvm.beginrescueend.com/packages/readline/ and with help from Sutto at #rvm irc.freenode.net I didn''t try your solution, though I am sure it works. Thanks once again. -- Posted via http://www.ruby-forum.com/. -- 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@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Possibly Parallel Threads
- rvm install 1.8.7 prompts "There has been an error while running make. Halting the installation."
- Problem using rvm in bash script
- Trouble with Ruby on Rails
- Very strange problem: Ton's of ruby process just running simple command "rails --version" or "rails
- Problems with Sqlite3 and apt-get