I've installed rvm as a way of making sure that my local development version of ruby is the same as my server's for a particular app i work on (ruby 1.8.7). I've done this, and installed ruby 1.8.7 ok. However, when i try to start the rails console i get this error:

Readline was unable to be required, if you need completion or history install readline then reinstall the ruby.
You may follow 'rvm notes' for dependencies and/or read the docs page http://rvm.beginrescueend.com/packages/readline/ . Be sure you 'rvm remove X ; rvm install X' to re-compile your ruby with readline support after obtaining the readline libraries.
Couldn't load Wirble: no such file to load -- wirble

I've read the notes on the page that error refers to (http://rvm.beginrescueend.com/packages/readline/), and followed the instructions, which involve basically installing readline, uninstalling ruby 1.8.7, then installing ruby 1.8.7 again with readline support. (actually that page uses ruby 1.9.2 as an example but i'm assuming it should work with 1.8.7 as well. Perhaps that's not the case).

But, i still get the same error. Has anyone else been through this and figured it out?
Grateful for any advice - max

EDIT - i'm using Ubuntu 9.10 btw in case that's relevant.

EDIT - here's my output for rvm info as asked for below:

$ rvm info

system:

  system:
    uname:       "Linux max-laptop 2.6.31-22-generic #68-Ubuntu SMP Tue Oct 26 16:38:35 UTC 2010 i686 GNU/Linux"
    bash:        "/bin/bash => GNU bash, version 4.0.33(1)-release (i486-pc-linux-gnu)"
    zsh:         " => not installed"

  rvm:
    version:      "rvm 1.1.6 by Wayne E. Seguin (wayneeseguin@gmail.com) [http://rvm.beginrescueend.com/]"

  homes:
    gem:          "not set"
    ruby:         "not set"

  binaries:
    ruby:         "/usr/bin/ruby"
    irb:          "/usr/bin/irb"
    gem:          "/usr/bin/gem"
    rake:         "/usr/bin/rake"

  environment:
    PATH:         "/home/max/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/var/lib/gems/1.8/bin:/home/max/software/svnmerge:/home/max/.gem/ruby/1.8/bin:/home/max/work/e_learning_resource/trunk/public/assets/dvd_files/bin:/opt/firefox:/home/max/.rvm/bin:/home/max/.rvm/bin"
    GEM_HOME:     ""
    GEM_PATH:     ""
    MY_RUBY_HOME: ""
    IRBRC:        ""
    RUBYOPT:      ""
    gemset:       ""
link|improve this question

51% accept rate
How about appending the output of rvm info to your question above? – the Tin Man Dec 23 '10 at 19:47
done, thanks (see above) – Max Williams Dec 29 '10 at 16:07
feedback

5 Answers

up vote 37 down vote accepted

I had a similar problem it was with 1.9.2 on Ubuntu 10.04, but the symptoms were identical. In order to get it to work:

rvm pkg install readline

or prior to RVM version 1.6.32, you need the following command

rvm package install readline

Then:

apt-get install ncurses-dev

And then taking from their instructions at http://rvm.beginrescueend.com/packages/readline/

cd $HOME/.rvm/src/ruby-1.9.2-p0/ext/readline
ruby extconf.rb -- --with-readline-dir="$HOME/.rvm/usr"
make install

I had actually done a system rvm install on the server, so I needed to do this:

cd $HOME/.rvm/src/ruby-1.9.2-p0/ext/readline
ruby extconf.rb -- --with-readline-dir="/usr/local/rvm/usr"
make install

After that I was able to have full access to the console.

link|improve this answer
By proxy: +1 per request of my workmate. – ANeves Feb 8 '11 at 23:42
Thnx to Geoff Lanotte His solution also works with Ruby 1.9.2-p3 +RVM +Rails 3.0.6 – prikha Apr 9 '11 at 18:47
Thanks Geoff, just remembered to accept your answer. :) – Max Williams May 20 '11 at 9:36
Thanks for your fix. It works for me. The only thing other people might want to check is the path (assuming you are cutting and pasting). My path varied slightly from Geoff. Other than, it worked. Thanks. – 9monkeys May 23 '11 at 18:04
1  
for me I had to use pkg, not package. use rvm pkg install readline – edwardsharp Nov 10 '11 at 0:43
show 6 more comments
feedback

I got same problem and solved it. I check http://rvm.beginrescueend.com/packages/readline/ Please check follow 2 things:

  1. sudo aptitude install libreadline5-dev libncurses5-dev use libreadline6-dev, if you have a new version.
  2. ruby extconf.rb -- --with-readline-dir='/home/youruser/.rvm/usr/include/readline' make sure you have the readline lib files under the with-readline-dir you pointed.
link|improve this answer
feedback

Run the command

rvm requirements

It shows the requirements and dependencies. Install those and reinstall the ruby on rvm

rvm remove 1.9.2
rvm install 1.9.2

It works!

link|improve this answer
feedback

Are you sure you fully uninstalled the defective ruby before reinstalling?

link|improve this answer
Well, i did ` rvm remove 1.8.7` and it seemed to do something. It certainly didn't complain or raise any errors. – Max Williams Dec 23 '10 at 9:38
I use rvm uninstall 1.8.7; rvm install 1.8.7. "remove" uninstalls and removes the source. "uninstall" uninstalls the Ruby leaving the source. "remove" is good if a version has a new patch number, and "uninstall" is good when a change in the environment forces a needed recompilation. Otherwise there's not much difference. – the Tin Man Dec 23 '10 at 19:46
I tried it using 'uninstall' in place of 'remove' but the results were the same. Thanks anyway though. – Max Williams Dec 29 '10 at 16:07
feedback

Have you trying this tutorial to use the readline install by brew ?

http://blog.plataformatec.com.br/2010/05/accented-chars-in-irb-with-rvm-and-ruby-1-8-7/

link|improve this answer
I'd not heard of Brew but it looks like it's a package manager for OSX. I'm using ubuntu 9.10 - sorry that i didn't mention this in my OP. – Max Williams Dec 23 '10 at 9:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.