1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-24 00:02:09 +02:00
tldr/pages/common/rvm.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

36 lines
694 B
Markdown

# rvm
> Easily installing, managing, and working with multiple ruby environments.
> More information: <https://rvm.io>.
- Install one or more versions of Ruby:
`rvm install {{version1 version2 ...}}`
- Display a list of installed versions:
`rvm list`
- Use a specific version of Ruby:
`rvm use {{version}}`
- Set the default Ruby version:
`rvm --default use {{version}}`
- Upgrade a version of Ruby to a new version:
`rvm upgrade {{current_version}} {{new_version}}`
- Uninstall a version of Ruby and keep its sources:
`rvm uninstall {{version}}`
- Remove a version of Ruby and its sources:
`rvm remove {{version}}`
- Show specific dependencies for your OS:
`rvm requirements`