Skip to content

Instantly share code, notes, and snippets.

@deltorosalazar
Created November 19, 2024 23:53
Show Gist options
  • Save deltorosalazar/78d893421f1bfc1681336ceff12d310d to your computer and use it in GitHub Desktop.
Save deltorosalazar/78d893421f1bfc1681336ceff12d310d to your computer and use it in GitHub Desktop.
Change Ruby version in Mac, M1, M2 and M3
# 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