2
1

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 3 years have passed since last update.

rbenv で欲しいバージョンがない

Posted at

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

% rbenv install -l
2.6.7
2.7.3
3.0.1

ver2.7.1が欲しいのだが、ない。

rbenv をアップデートしてみる

https://qiita.com/_am_/items/c1dbeb11f40bbbac8fd9
↑こちらの記事を参考。
欲しいバージョンがないときはアップデートするように書いてある。

下記実行

$ brew update
$ brew upgrade rbenv ruby-build

結果:
変わらず。

% rbenv install -l
2.6.7
2.7.3
3.0.1

インストールしてみる

下記実行

% rbenv install 2.7.1

結果:

インストール出来た。

結論

rbenv install -lに直接書いてなくても、最新のものより前のバージョンなら、DLできるっぽい。

2
1
3

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?