↧
Answer by Vadym Tyemirov for How to get Readline support in IRB using RVM on...
If you are using Bundler then the following might help:echo "gem 'rb-readline'">> Gemfilebundle install
View ArticleAnswer by punkdata for How to get Readline support in IRB using RVM on Ubuntu...
These steps fixed my problem (on a Lubuntu 12.04) after previously compiling ruby and continually getting the "compile readline missing" error anytime I ran:sudo aptitude install build-essential...
View ArticleAnswer by David Mountain for How to get Readline support in IRB using RVM on...
My setup is ubuntu 11.10, RVM 1.10.2, ruby 1.9.3.This readline problem was giving errors when running irb, and prevented running of the rails console due to the error:'require': cannot load such file...
View ArticleAnswer by henrybai for How to get Readline support in IRB using RVM on Ubuntu...
This solved my problem for rvm with Ruby 1.9.3gem install rb-readline
View ArticleAnswer by mart7ini for How to get Readline support in IRB using RVM on Ubuntu...
Forget about everything that you hear about any logic, just look here and do the same step-by-step: (ubuntu x64): $ ruby extconf.rb checking for tgetnum() in -lncurses... yeschecking for...
View ArticleAnswer by Bryan Larsen for How to get Readline support in IRB using RVM on...
Ubuntu 12.04 here: the answers here helped, but were also misleading.If you're using Ubuntu 12.04, DO NOT pkg install readline, with or without --skip-autoreconf. After you've done that, either...
View ArticleAnswer by HannesBenson for How to get Readline support in IRB using RVM on...
Unfortunately none of these worked for me. I ended up using the Quick Fix from http://beginrescueend.com/packages/readline/That solved my problem.
View ArticleAnswer by Michael F for How to get Readline support in IRB using RVM on...
For me, it just worked out of the box with the latest verison of rvm. My stepsbash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )according to rvm...
View ArticleAnswer by Fernando Carvalho for How to get Readline support in IRB using RVM...
You may try a workarround installing the package libreadline5-dev.I gess the libreadline6-dev is not working right now.
View ArticleAnswer by usonianhorizon for How to get Readline support in IRB using RVM on...
I struggled with this same issue with Ubuntu 11.10.In my case readline would seemingly compile properly if I used the following:$ rvm --skip-autoreconf pkg install readlineas outlined at the bottom of...
View ArticleAnswer by ktec for How to get Readline support in IRB using RVM on Ubuntu 11.10
Ok, so this might seem pretty obvious, well it always is when you know the answer:I gave up using RVM, and switched to rbenv - which I'm very pleased I did! sudo apt-get install...
View ArticleAnswer by shane for How to get Readline support in IRB using RVM on Ubuntu 11.10
I had the same issue but I'm on 11.04 and from reading the link you gave https://github.com/wayneeseguin/rvm/issues/553and from the info in peplins comment there I removed the autoreconf call that was...
View ArticleHow to get Readline support in IRB using RVM on Ubuntu 11.10
I have tried everything I can think of to get this to work, to no avail so here I am requesting suggestions on how to debug.Firstly, runnning Ubuntu 11.10Installed rvm:$ bash < <(curl -s...
View Article
More Pages to Explore .....