3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ruby 入門 ~Ruby環境の導入~

Last updated at Posted at 2018-08-18

目次

・ rbenv、ruby-buildをインストール
・ rubyの最新バージョンをインストールする
・ rbenvを使ってrubyバージョンを切り替えてみる

rbenvインストール

brew update
brew install rbenv ruby-build
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
source ~/.bash_profile

ruby-buildをすでにインストールしている場合は最新版にアップグレード

brew upgrade ruby-build

rubyインストール

インストールできるrubyバージョンを確認

rbenv install --list

ruby 2.5.1(2018/8/18時点の最新)をインストール

rbenv install 2.5.1

現在設定されているrubyバージョンの確認

rbenv versions
* 2.1.3 (set by /Users/nagataki/.rbenv/version)
  2.2.2
  2.3.0-dev
  2.5.1

rubyバージョンの切り替え

今回は環境全体にrubyバージョンを適用するのではなく、
ローカル環境のみに適用する。

rbenv local 2.5.1

rbenv versions
  system
  2.1.3
  2.2.2
  2.3.0-dev
* 2.5.1 (set by /Users/nagataki/ruby_study/.ruby-version)
3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?