Advertisement
Justman10000

Manage RVM

Apr 23rd, 2023 (edited)
1,273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.43 KB | None | 0 0
  1. // To install
  2. gpg --keyserver hkp://keyserver.ubuntu.com --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
  3. curl -sSL https://get.rvm.io | bash -s master
  4. source /usr/local/rvm/scripts/rvm
  5.  
  6. # Install a Ruby version
  7. # Replace Version with the version, that should be installed!
  8. # To see all exists versions, run `rvm list known`
  9. rvm install ruby-VERSION
  10.  
  11. // To uninstall
  12. rm -r /usr/local/rvm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement