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
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:
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
Written by Alexander Tamoykin
Related protips
3 Responses
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
Package manager for windows. Awesome! Thanks @bradgearon
Totally agree. NP