Gorąco zalecamy użycie menedżera pakietów i Menedżer Ruby Środowisko.
Na Mac:
brew update
brew install ruby
# If you use bash
echo 'export PATH=/usr/local/Cellar/ruby/2.4.1_1/bin:$PATH' >> ~/.bash_profile
# If you use ZSH:
echo 'export PATH=/usr/local/Cellar/ruby/2.4.1_1/bin:$PATH' >> ~/.zprofile
Można to zrobić, ale ja proponuję za pomocą Menedżera Środowisko dla Ruby. Masz rbenv i RVM.
IMO iść do rbenv:
brew install rbenv ruby-build
# bash
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
# zsh
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zprofile
echo 'eval "$(rbenv init -)"' >> ~/.zprofile
# list all available versions:
rbenv install -l
# install a Ruby version:
rbenv install 2.4.1
# set ruby version for a specific dir
rbenv local 2.4.1
# set ruby version globally
rbenv global 2.4.1
rbenv rehash
gem update --system
chociaż ta komenda może odnieść sukces, jeśli używasz 'sudo', w dłuższej perspektywie będzie to łatwiejsze, jeśli użyć menedżera wersji jak rbenv lub rvm. –
Możesz uruchomić 'gem' tylko z linii poleceń, jeśli masz zainstalowane RubyGems. Być może będziesz musiał zainstalować ręcznie. –