0
0

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でRubyのversionが変わらなくて悩んだ原因はシェルだった。

Posted at

背景

Homebrewおよびrbenvをインストールし、

$ rbenv global 3.0.2

Rubyのversionを2.6.3から3.0.2へ更新しました。

しかし、ターミナルを一度閉じてしまったり、iTermやVSCodeなど他のCLIで「ruby -v」コマンドでRubyのversionを確認してみても、2.6.3のままでした。

Rubyのバージョンが切り替わらない時の対処法!を参考に「.bash_profile」を書き換えた後、「source ~/.bash_profile」コマンドを実行してみましたが症状は変わらずでした。

原因

シェルがbashではなくzshだったため、「.bash_profile」にRubyの参照先を書いても起動時に読み込まれないことが原因でした。

rbenvでRubyバージョン切り替える【仕組みまで理解】を参考に「.zshrc」を書き換えたところ解消されました。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?