Last active
February 17, 2021 00:31
-
-
Save frankyonnetti/21d7eb0028e5bc28dca31e7107d574a0 to your computer and use it in GitHub Desktop.
Ruby - rbenv environments #ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://gorails.com/setup/osx/10.12-sierra | |
| # https://github.com/rbenv/rbenv | |
| # list all available versions: | |
| $ rbenv install -l | |
| # install a Ruby version: | |
| $ rbenv install 2.1.0 | |
| # ensure that the target version for your project | |
| # is the one you want by checking: | |
| $ rbenv local | |
| # or | |
| $ rbenv version | |
| # check location where gems are being installed: | |
| $ gem env home | |
| # install gems | |
| $ gem install GEM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment