LoginSignup
1
1

More than 5 years have passed since last update.

[超初心者向け] まっさらなMacにRuby2.5.1をインストールする

Last updated at Posted at 2018-07-22

ターミナルで以下コマンドを入力

# コマンドラインツールのインストール
xcode-select --install

# homebrewのインストール
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

# homebrewのからrubyのversion管理ツールをインストール
brew install rbenv ruby-build

# rbenv経由でruby 2.5.1をインストール
rbenv install 2.5.1

# rbenvの設定
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile

# rbenvの設定を反映
source ~/.bash_profile

# rubyのversionを変更
rbenv global 2.5.1 
rbenv rehash    

参考
MacでRuby on Rails環境構築 - Qiita

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1