2
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/ruby-buildのアップデートをしたのに、rbenv install -l で欲しいversionが表示されない時の解決方法

Posted at

update

・rbenvのアップデート

$ brew update

・ruby-buildのアップデート

$ brew upgrade ruby-build

インストール可能なrubyバージョンの確認

$ rbenv install -l

rbenv/ruby-buildをアップデートしたのにも関わらず、インストールしたいversionが表示されなかった。
(今回の私の場合、2.5.3が欲しかったのに表示が無かった)

解決方法

どうやらrbenvのpluginを更新する必要があるらしい。

$ cd /Users/yusaku/.rbenv/plugins/ruby-build && git pull && cd -

これで2.5.3が表示されるようになった。

$ rbenv install -l|grep 2.5.
  2.5.0-dev
  2.5.0-preview1
  2.5.0-rc1
  2.5.0
  2.5.1
  2.5.2
  2.5.3
  2.5.4
  2.5.5

インストール

$ rbenv install 2.5.3
$ ruby -v
ruby 2.5.3p105 (2018-10-18 revision 65156) [x86_64-darwin17]

これでインストールできました。

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