Sha256: 5debdd2f7c876d9773a6ee3d935cd8ebf7e4bddb28a484b24043b34954ba6628
Contents?: true
Size: 1.12 KB
Versions: 6
Compression:
Stored size: 1.12 KB
Contents
# Installing Ruby on Windows * The [Chocolatey Package Manager](http://chocolatey.org/) makes installing Ruby a breeze. Think of it as NuGet for your machine. To install it, follow the instructions on [their website](http://chocolatey.org/). * Certain Chocolatey packages might not work with older versions of Powershell so update it to the latest version. ``` $ choco install powershell ``` * Install Ruby. ``` $ choco install ruby ``` * Restart your shell to refresh the environment variables. * Install Ruby DevKit. ``` $ choco install ruby2.devkit ``` * Check that ruby is installed by running the following. Note that your version may be slightly different: ``` $ ruby --version ruby 2.1.5p273 (2014-11-13 revision 48405) [x64-mingw32] ``` ## Troubleshooting When installing Ruby DevKit, it should automatically register itself with the installed ruby version. However, you may need to configure Ruby DevKit manually by running the following. ``` $ cd \tools\DevKit2 $ echo "- C:/tools/ruby215" >> config.yml $ ruby dk.rb install --force ```
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
physique-0.3.10 | RUBY_SETUP.md |
physique-0.3.9 | RUBY_SETUP.md |
physique-0.3.8 | RUBY_SETUP.md |
physique-0.3.7 | RUBY_SETUP.md |
physique-0.3.6 | RUBY_SETUP.md |
physique-0.3.5 | RUBY_SETUP.md |