Answers for "where is ruby install on macos"

0

install ruby and rails on mac

brew install rbenv ruby-build

# Add rbenv to bash so that it loads every time you open a terminal
echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.zshrc
source ~/.zshrc

# Install Ruby
rbenv install 2.6.6
rbenv global 2.6.6
ruby -v
Posted by: Guest on December-17-2020
0

macOs install ruby

$ brew install ruby
Posted by: Guest on August-22-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language