Last Updated: February 25, 2016
·
926
· fsproru

How to install Ruby on Windows

Ruby on Windows, Why?

I'm using Mac OS X myself. It's nice. But there is a large number of developers out there who wants to start programming. All they have is a Windows laptop. Fortunately, installing Ruby on Windows is not a big deal these days. It's simple as 1, 2, 3!

1) Download Ruby Installer

Download Ruby-2.0.0 installer from Ruby Installer download page

2) Install it

Make sure to check “Add Ruby executables to you PATH” checkbox

Install Ruby on Wondows

3) Check your Ruby installation

Open your Command Prompt to see if Ruby was successfully installed by typing this:

$ ruby -v
$ irb -v

If you see the version of Ruby, you're good to go. It should look something like this:

Check your Ruby installation on Windows

I installed Ruby, now what?

You can check out 7 Days of Ruby Online Course. It will teach you the basics of Ruby programming. Even if you have never programmed before. And it's FREE!

Cheers,<br>
Alex

3 Responses
Add your response

or install chocolatey

@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin

and then type

cinst ruby
over 1 year ago ·

Package manager for windows. Awesome! Thanks @bradgearon

over 1 year ago ·

Totally agree. NP

over 1 year ago ·