Sha256: e87d8dda0f3d077eb5dfe586153e558fc9492a8da6946732a3ee5d76c2c144d6

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 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.

* After restarting, check that ruby is installed by running the following. Note that your version may be slightly different:

    ```
    $ ruby --version
    ruby 2.2.3p173 (2015-08-18 revision 51636) [x64-mingw32]
    ```

* Install Ruby DevKit.

    ```
    $ choco install ruby2.devkit
    ```

* Register Ruby with DevKit.

    ```
    $ cd \tools\DevKit2
    $ echo - C:/tools/ruby22 >> config.yml
    $ ruby dk.rb install --force
    ```

You should now be ready to Ruby!

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
physique-0.4.0 RUBY_SETUP.md