Pregunta

-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

No hay solución correcta

Otros consejos

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"

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top