如果我将rbenv添加到我的环境中,我应该从中删除RVM吗?
这是我的.bash_profile:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/.local/bin:$HOME/bin
export PATH
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
答案 0 :(得分:1)
引用https://github.com/sstephenson/rbenv#installation
兼容性说明:rbenv与RVM不兼容。在安装rbenv之前,请确保完全卸载RVM并从shell初始化文件中删除对它的任何引用。
所以是的,你应该删除RVM或rbenv。