2011-09-19 13:19:20 -04:00
---
layout: page
2012-08-03 17:18:01 -04:00
title: "Installing Ruby with RVM"
date: July 31 2012
2011-09-19 13:19:20 -04:00
sidebar: false
footer: false
---
2012-08-03 17:18:01 -04:00
RVM (Ruby Version Manager) handles the installation and management of multiple Ruby environments. Ruby 1.9.3 is required for Octopress and using RVM you can install it with ease.
## Install RVM
Run the following command from your terminal.
2011-09-19 13:19:20 -04:00
```sh
2012-07-31 16:45:05 -04:00
curl -L https://get.rvm.io | bash -s stable --ruby
2011-09-19 13:19:20 -04:00
```
2012-08-03 17:18:01 -04:00
Be sure to follow any subsequent instructions as guided by the installation process.
2011-09-19 13:19:20 -04:00
2012-08-03 17:18:01 -04:00
## Install Ruby 1.9.3
2011-09-19 13:19:20 -04:00
2012-08-03 17:18:01 -04:00
Next install Ruby 1.9.3 and you'll be all set.
2011-09-19 13:19:20 -04:00
```sh
2012-08-03 17:18:01 -04:00
rvm install 1.9.3
rvm use 1.9.3
rvm rubygems latest
2011-09-19 13:19:20 -04:00
```
2012-08-03 17:18:01 -04:00
Run `ruby --version` to be sure you're using Ruby 1.9.3. If you're having trouble, [seek help here ](https://rvm.io/support ).
[← Return to setup ](/docs/setup )