I always get frustrated while installing readline package for rvm and need a bunch of googling for successful installation. So I thought of no more googling for this stuff and I just noted step by step procedures for doing it with ease. This post assumes that you already setup rvm and ruby on your workstations and using Ubuntu.
The Prerequisites
You need to install the following packages as prerequisites for readline package. Choose the prerequisites according to the Ubuntu version.
Ubuntu 11.04
Ubuntu 11.10
If you are using ubuntu 11.10 and rvm 1.10.0 then try using rvm requirements command to find all the dependencies. For readline we require only the two packages which are listed below.
Common for both Ubuntu 11.10 and Ubuntu 11.04
ncurses-dev package is common for both Ubuntu 11.04 and 11.10.
Installing readline
Now the prerequisites are over. Now we can install the readline package
Configuring readline
Use the following commands to configure readline. The directory may change accordingly to which ruby version you are configuring readline.
The Prerequisites
You need to install the following packages as prerequisites for readline package. Choose the prerequisites according to the Ubuntu version.
Ubuntu 11.04
- libncurses5-dev
- libreadline5-dev
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install libncurses5-dev libreadline5-dev |
If you are using ubuntu 11.10 and rvm 1.10.0 then try using rvm requirements command to find all the dependencies. For readline we require only the two packages which are listed below.
- libreadline-gplv2-dev
- lib64readline-gplv2-dev
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install libreadline-gplv2-dev lib64readline-gplv2-dev |
ncurses-dev package is common for both Ubuntu 11.04 and 11.10.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install ncurses-dev |
Now the prerequisites are over. Now we can install the readline package
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rvm package install readline |
Use the following commands to configure readline. The directory may change accordingly to which ruby version you are configuring readline.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd $HOME/.rvm/src/ruby-1.9.3-p0/ext/readline | |
ruby extconf.rb --with-readline-dir=“$HOME/.rvm/usr” | |
sudo make install |