質問

-bash: /usr/local/rvm/scripts/rvm: No such file or directory

This is the greeting I get each time I open terminal. Clearly this seems an important alert but as i have rvm working fine, I don't understand the problem. Any help to rid me of this message?

Thanks

正しい解決策はありません

他のヒント

The problem is that you're giving a wrong path to the terminal. Perhaps you should edit your .bash_profile.

Replace

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "/usr/local/rvm/scripts/rvm"

with

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top