Tutorial

How To Install Ruby on Rails on Arch Linux with RVM

Published on September 21, 2012
How To Install Ruby on Rails on Arch Linux with RVM

About Ruby on Rails

Ruby on Rails is an application stack that provides developers with a framework to quickly create a variety of web applications.

Ruby on Rails does take a little while to install on a virtual server, but luckily there are a lot of helpful tools to make this process as easy as possible. You can run this tutorial on your droplet as a user with sudo privileges. You can check out how to set that up here: Arch Linux Server Setup

Step One— Install Ruby with RVM

Before we do anything else, we should run a quick update to make sure that all of the packages we download to our VPS are up to date:

pacman -Sy

Once that's done, we can start installing RVM, Ruby Version Manager. This is a great program that lets you use several versions of Ruby on one server; however, in this case, we will just use it to install the latest version of Ruby on the droplet.

If you do not have curl on your system, you can start by installing it:

pacman -S curl

To install RVM, open terminal and type in this command:

curl -L get.rvm.io | bash -s stable

After it is done installing, open your .bashrc file

nano .bashrc

and add this to the end:

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"

This will load RVM on startup. To apply the changes, exit your session and log back in.

In order to work, RVM has some of its own dependencies that need to be installed. Arch Linux will install these for you with

rvm requirements

Step Two—Install Ruby

Before installing Ruby, you need to install libyaml if you plan on installing Rails (you can do this later, but you'll need to reinstall Ruby if you do).

sudo pacman -S libyaml

installing Ruby with RVM is easy.

rvm install 1.9.3

Ruby is now installed. However, since we accessed it through a program that has a variety of Ruby versions, we need to tell the system to use 1.9.3 by default.

rvm use 1.9.3 --default

Step Three—Install RubyGems

The next step makes sure that we have all the required components of Ruby on Rails. We can continue to use RVM to install gems; type this line into terminal.

 rvm rubygems current

Step Four—Install Rails

Once everything is set up, it is time to install Rails. To start, open terminal and type in:

gem install rails

This process may take a while, be patient with it. Once it finishes you will have Ruby on Rails installed on your droplet.

Once Ruby on Rails is installed in full on your virtual server, you can check which version of each you are using:

ruby -v
rails -v
By Etel Sverdlov

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
4 Comments


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

I Love YOU!, I LOOOOOOOOOVE YOU!.. Perfect in Arch Linux.

Greeting from Chile!

after running this command curl -L get.rvm.io | bash -s stable wen i run nano .bashrc this is empty file and i copied this command [[ -s “$HOME/.rvm/scripts/rvm” ]] && source “$HOME/.rvm/scripts/rvm” in that file when i run rvm enviroment it returns bash: rvm: command not found when i dom mistake?!

Thanks!!!

Excellent guide, thanks for the quick and easy steps!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel