So I want to deploy my app to Heroku, registered the account and did other necessary things. But I ran on a problem running command heroku keys:add. Here's the errors I get:

ruby@Rubuntu:~/rails_projects/first_app$ heroku keys:add
/home/ruby/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require': no such file to load -- readline (LoadError)
from /home/ruby/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
from /home/ruby/.rvm/gems/ruby-1.9.2-p180@rails3tutorial/gems/heroku-2.1.4/lib/heroku/command/run.rb:1:in `<top (required)>'
from /home/ruby/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
from /home/ruby/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
from /home/ruby/.rvm/gems/ruby-1.9.2-p180@rails3tutorial/gems/heroku-2.1.4/lib/heroku/command.rb:17:in `block in load'
from /home/ruby/.rvm/gems/ruby-1.9.2-p180@rails3tutorial/gems/heroku-2.1.4/lib/heroku/command.rb:16:in `each'
from /home/ruby/.rvm/gems/ruby-1.9.2-p180@rails3tutorial/gems/heroku-2.1.4/lib/heroku/command.rb:16:in `load'
from /home/ruby/.rvm/gems/ruby-1.9.2-p180@rails3tutorial/gems/heroku-2.1.4/bin/heroku:13:in `<top (required)>'
from /home/ruby/.rvm/gems/ruby-1.9.2-p180@rails3tutorial/bin/heroku:19:in `load'
from /home/ruby/.rvm/gems/ruby-1.9.2-p180@rails3tutorial/bin/heroku:19:in `<main>'

Help me out please!

PS! I am learning RoR using this book: http://ruby.railstutorial.org/ruby-on-rails-tutorial-book#sec:install_rubygems

link|improve this question

76% accept rate
"/home/ruby/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/site_ruby/1.9.1/rubygems/custom‌​_require.rb:36:in `require': no such file to load -- readline (LoadError)" Something's missing! – with a dot. May 15 '11 at 0:31
Well, I understand it, I'm hoping that this is common problem for newbies at RoR and maybe someone know the quick fix for it. – Marko May 15 '11 at 0:37
feedback

2 Answers

up vote 7 down vote accepted

Solution here

link|improve this answer
Ty a lot! Guess I need to practice more my Google skills:) – Marko May 15 '11 at 1:11
Indeed. :D Googling for something like `require': no such file to load -- readline (LoadError) helps more than the whole line, since it's looking for less keywords & the possibility of variations is lessened. or that's what I thought all this time. – with a dot. May 15 '11 at 1:14
:) PS! If that's you on the picture, you look great for a developer :) Also, since you are an Ruby evangelist, can you recommend some nice tutorials/books for beginners? As I mentioned before, I am learning using this book at the moment: ruby.railstutorial.org/ruby-on-rails-tutorial-book – Marko May 15 '11 at 1:16
My favourite one is: pragprog.com/titles/rails3/agile-web-development-with-rails It doesn't cover Ruby that much, only basics, but rails is excellently covered. And thank you for the compliment. :D – with a dot. May 15 '11 at 1:20
1  
On Cygwin you need to install the readline package (vs libreadline-dev), then follow the solution above. – studgeek Apr 21 at 15:59
feedback

It looks like this is a fairly common problem on Ubuntu. From this post on another forum:

On my system Ubuntu (Hardy 8.04) I required libncurses5-dev and libreadline5-dev (installed with apt-get install . Re-run "ruby extconv.rb" and it will show you whether anything else is missing, or create a makefile. Once you have your makefile, run make, then make install.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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