5
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.

rbenvでruby2.4.2をインストール

Last updated at Posted at 2017-09-21

作業環境

Mac OS X 10.11.6
ruby2.4.1 -> 2.4.2にします。

$ rbenv version
2.4.1

インストール手順

$ rbenv install 2.4.2
ruby-build: definition not found: 2.4.2

See all available versions with `rbenv install --list'.

If the version you need is missing, try upgrading ruby-build:

  brew update && brew upgrade ruby-build

2.4.2が見つからなかったので、homebrewのアップデートとかしていく。
(まあ、書いてある通りに実行すればOK。)

# homebrewのアップデート
$ brew update
# ruby-buildのアップグレード
$ brew upgrade ruby-build
# rbenvで2.4.2をインストール
$ rbenv install 2.4.2
# rbenvで2.4.2を指定
$ rbenv global 2.4.2

以上。

5
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
5
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?