Created
November 19, 2024 23:53
-
-
Save deltorosalazar/78d893421f1bfc1681336ceff12d310d to your computer and use it in GitHub Desktop.
Change Ruby version in Mac, M1, M2 and M3
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
# Install rbenv | |
brew install rbenv ruby-build && \ | |
## Install Ruby version 3.3.3 | |
rbenv install 3.3.3 && \ | |
## Activate Ruby version 3.3.3 as the new default | |
rbenv global 3.3.3 | |
## Restart the terminal | |
## https://dev.to/luizgadao/easy-way-to-change-ruby-version-in-mac-m1-m2-and-m3-16hl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment