views:

36

answers:

2

Hi, i am very new to Ruby on rails . while running script/console , i am getting the below environment ..

aruna@aruna-desktop:~/railsprojects/pagesapp$ script/console Loading development environment (Rails 2.3.8) sh: irb: not found

Please give suggestions..

+1  A: 

I believe irb is in a separate package (called irb, IIRC), so you'll need to install that as well.

pdbartlett
+1  A: 

*thelepaty_mode: it looks like you using Ubuntu, so

sudo apt-get install irb

will help you

uzzz