24

Can I install the Ruby Version Manager (RVM) on my Raspberry Pi?

asked Jul 11, 2012 at 18:10

2 Answers 2

23

Yes!

First, you'll need to install curl, git, and build-essential for your operating system. If you don't know how to install software for your system please refer to How do I install new software?.

Next you need to download and run the bash script they provide.

$ curl -L https://get.rvm.io | bash -s stable --ruby

Next you can do one of two things.

  1. Close and reopen your terminal session, or
  2. Source the rvm script like so.

     $ source ~/.rvm/scripts/rvm
    

Now you can check if RVM is installed by running the following command.

$ type rvm | head -n 1
rvm is a function

If you get a response like the above one RVM has been loaded and you can install a specific Ruby version. It is recommended that you install the latest stable release; which is Ruby 1.9.3 as of July 11, 2012.

$ rvm install 1.9.3

Now the final the step is to tell RVM which version to use. In order to use a specific Ruby version for the duration of the current terminal session run the following.

$ rvm use 1.9.3

If you want to use that specific version every time you open a new terminal session though you are going to have to tell RVM to set it as the default Ruby. Like so.

$ rvm use --default 1.9.3

Congratulations, you have successfully installed RVM on your Raspberry Pi!

Note build-essential is Debian's group for gcc, g++, make etc. Arch includes a similar group called base-devel.

answered Jul 11, 2012 at 18:10
10
  • Is this any different from installing on any other Linux machine? Commented Jul 11, 2012 at 21:03
  • 2
    In order to make this answer more Raspberry Pi specific, can you comment on the performance of Ruby on the Pi. Is this worth doing, or is it going to be unusably slow? Commented Jul 12, 2012 at 10:54
  • 3
    The make activity on RVM was quite slow as was compiling a Ruby. Make probably took 15 minutes on initial rvm install. Compiling took about an hour. After RVM and a ruby are installed, it is quite snappy. Commented Jul 12, 2012 at 13:10
  • 2
    The correct package name is build-essential and not build-essentials. Commented Mar 22, 2013 at 22:40
  • 3
    I got an errror while executing the first command, also had to run this to add gpg keys: gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 Commented Jun 3, 2015 at 9:50
1

if it helps anyone using this i found this command on rasbain lite was needed

curl -L https://get.rvm.io | bash
Jacobm001
11.9k7 gold badges48 silver badges58 bronze badges
answered Feb 27, 2016 at 23:47

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.