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.
-
First, Open a Shell session
Ctrl+Alt+t on desktop
(Press “Enter” to Execute Commands)
Or Login into Server Shell Shell… -
Then Install cUrl & Gpg2
sudo su -c "apt install -y curl; apt install -y gpg2"
-
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"
-
Follow with RVM Initial Setup.
-
Adding User to rvm Group
sudo su -c "usermod -a -G rvm USERNAME"
-
SetUp User to Load rvm on Console
nano ~/.bashrc
Inserts:
source /etc/profile.d/rvm.sh
Ctrl+x to Save & Exit :)
-
Test rvm Installation
Open a New Shell Window or Tab
rvm -v
That Should Give you a Welcome into RVM :)
-
-
Getting-Started with RVM on Ubuntu Linux