Skip to content

Instantly share code, notes, and snippets.

@Integralist
Last active November 11, 2020 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Integralist/a6e36f6b32573242f0b21918a4c56a27 to your computer and use it in GitHub Desktop.
Save Integralist/a6e36f6b32573242f0b21918a4c56a27 to your computer and use it in GitHub Desktop.
[Ruby RVM] #ruby #rvm
# install rvm
#
curl -sSL https://get.rvm.io | bash
# lookup available ruby interpreters
#
rvm list known
# install specific ruby version
#
rvm install "ruby-2.5.3"
# create a project scoped gemset (e.g. similar to a virtual environment in Python)
#
rvm 2.5.3@foo --create
# switch to specific version
#
rvm 2.5.3@foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment