0

如果我将 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 -)"
4

1 回答 1

1

https://github.com/sstephenson/rbenv#installation引用

兼容性说明:rbenv 与 RVM 不兼容。请确保在安装 rbenv 之前完全卸载 RVM 并从 shell 初始化文件中删除对它的任何引用。

所以是的,您应该删除 RVM 或 rbenv。

于 2013-11-07T21:29:57.590 回答