5

I am pretty new to ruby world and I don't know about installing it. Viewing methods from blogs with google search but feeling confuse.

Could somebody help me to setup ruby in my Ubuntu 13.10?

Braiam
  • 69,112
Raja G
  • 105,327
  • 107
  • 262
  • 331

1 Answers1

10

Run these commands on terminal to install Ruby 2.0.

sudo apt-get update
sudo apt-get install ruby2.0 ruby2.0-dev

To check the ruby version,run this

ruby2.0 --version
Braiam
  • 69,112
Avinash Raj
  • 80,446