rheamic
rheamic

Reputation: 3

Adding rbenv to my environment

If I add rbenv to my environment, should I remove RVM from it?

This is my .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 -)"

Upvotes: 0

Views: 128

Answers (1)

Holger Just
Holger Just

Reputation: 55758

To cite from https://github.com/sstephenson/rbenv#installation

Compatibility note: rbenv is incompatible with RVM. Please make sure to fully uninstall RVM and remove any references to it from your shell initialization files before installing rbenv.

So yes, you should remove either RVM or rbenv.

Upvotes: 1

Related Questions