Pergunta

-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

Nenhuma solução correta

Outras dicas

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 em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top