You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rails is not currently installed on this system. To get the latest version, simply type:
$ sudo gem install rails
You can then rerun your "rails" command.
原因
zshはコマンドパスをキャッシュしている
macOSは /usr/bin/rails にデフォルトでrailsをインストールしている
gem i rails する前にrailsコマンドを実行すると、(rbenvのrailsではなく) /usr/bin/rails を実行し、パスをキャッシュしてしまう
そのあとでrbenv のRubyでgem i railsしても、キャッシュで覚えた /usr/bin/rails を実行してしまう
解決方法
rbenv rehashのほかに、zshのrehashコマンドを実行する
$ rbenv rehash
$ rehash
注意点
しばらくはzshをインストールしている人はほぼいないと思うので問題はなさそう
macOS Catalina からzshがデフォルトshellになるので、問題が起きるかもしれない
The text was updated successfully, but these errors were encountered:
環境
macOS + zsh
問題発生時の状況
以下のエラーメッセージが出る
原因
解決方法
rbenv rehashのほかに、zshのrehashコマンドを実行する
注意点
The text was updated successfully, but these errors were encountered: