Ruby RVM Install on Ubuntu 16.10 Yakkety Step By Step

October 24, 2017 | By the+gnu+linux+evangelist.

RVM Install Ubuntu 16.10 Yakkety

Hi! The Tutorial shows you Step-by-Step How to Ubuntu 16.10 Install Ruby Version Manager.

And inside the Ubuntu 16.10 Install Ruby Version Manager you find also Link to Getting-Started with RVM.

Finally, RVM is a Command-line Tool which allows you to easily Install, Manage, and Work with Multiple Ruby Environments (Interpreters to Sets of Gems).

And so RVM is expressly made to easily Manage:

  • Ruby Versions: RVM allows developers to install multiple versions of Ruby on their system and easily switch between them. This is particularly useful when working on projects that require different Ruby versions due to compatibility or dependency reasons.
  • Gemsets: RVM also supports the concept of gemsets, which are isolated environments for managing Ruby gems. This enables developers to install different sets of gems for different projects without worrying about conflicts.
Ruby RVM Install on Ubuntu 16.10 Yakkety Step by Step - Featured
  1. First, Open a Shell session
    Ctrl+Alt+t on desktop
    (Press “Enter” to Execute Commands)

    Ruby RVM Install on Ubuntu 16.10 Yakkety Step by Step - Terminal
    Or Login into Server Shell Shell…
  2. Then Install cUrl & Gpg2

    sudo su -c "apt install -y curl; apt install -y gpg2"
  3. Finally, Installing RVM
    First, Import the GPG Key with:

    sudo gpg2 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3

    And The Install the Latest RVM:

    sudo su -c "curl -L https://get.rvm.io | bash -s stable"
  4. Follow with RVM Initial Setup.

    1. Adding User to rvm Group

      sudo su -c "usermod -a -G rvm USERNAME"
    2. SetUp User to Load rvm on Console

      nano ~/.bashrc

      Inserts:

      source /etc/profile.d/rvm.sh

      Ctrl+x to Save & Exit :)

    3. Test rvm Installation

      Open a New Shell Window or Tab

      rvm -v

      That Should Give you a Welcome into RVM :)

  5. Getting-Started with RVM on Ubuntu Linux

    How to Install and Manage Multiple Rubies

QuickChic Theme • Powered by WordPress