Received Warning message “Path set to RVM” after updating ruby version using rvm

后端 未结 7 1885
南旧
南旧 2021-01-30 01:54

Recently I tried to update my ruby version due to a warning message (see below).

Now I get the following warning message when I start my iterm2:

Warning:         


        
7条回答
  •  情歌与酒
    2021-01-30 02:23

    I had same issue with oh-my-zsh While installing rvm with option --rails, there was this warning:

    This solution works for me: Open .zshrc file, and find PATH line

    change

    export PATH=/path/to/something

    into

    export PATH="$PATH:/path/to/something"

    save it and do source ~/.zshrc, Then it worked.

提交回复
热议问题