前提・実現したいこと
rbenv: version `ruby-2.6.3' is not installedを解決したいです。
発生している問題・エラーメッセージ
rbenvにパスを通すため、シェルの設定ファイル(.bashrcや.zshrc)に以下を追加しました。
[[ -d ~/.rbenv ]] && \ export PATH=${HOME}/.rbenv/bin:${PATH} && \ eval "$(rbenv init -)"
そしたらターミナルでrails sをしてもアプリが起動しなくなりました。
出てくるエラーメッセージは以下です。
rbenv: version `ruby-2.6.3' is not installed (set by /Users/xxx/practice/taskleaf/.ruby-version)
試したこと
rbenv exec gem install bundle
この問題を解決する方法が全くわかりません。
解決できるかたアドバイスを頂けると嬉しいですm(_ _)m
There exists no explanation about which version of ruby you have installed under rbenv environment. The outputs by issuing commands like "which -a ruby", "cat /Users/xxx/practice/taskleaf/.ruby-version", or "rbenv versions" would help you to understand in the situation where you stand.
Thank you advising me about this problem.
I solved this problem with your advise.
give results then close.
あなたの回答
tips
プレビュー