olivier
olivier

Reputation: 2645

How to use the newest version of Ruby global on Linux?

I'm new to Ruby and Linux and I wonder if this is possible?

I always have to work with:

rvm --default use ruby-2.2.1

when I want to work in a new directory.

I'm running ubuntu 14.04 LTS. Any help appreciated!

Upvotes: 0

Views: 59

Answers (1)

Srdjan Pejic
Srdjan Pejic

Reputation: 8202

You have two options:

  1. Set RVM to use that Ruby by default by using rvm --default use 2.2.1.
  2. Use Brightbox's Ubuntu packages for Ruby, located at https://www.brightbox.com/docs/ruby/ubuntu/

Upvotes: 1

Related Questions