I have installed pyenv
on a raspberry pi but now I want to uninstall it.
I already ran the command rm -rf $(pyenv root)
but now it says to delete lines from my "shell startup configuration". What does it mean? I found this lines in my .bash_profile
files:
if command -v pyenv 1>/dev/null 2>&1; then
eval"$(pyenv init-)"
fi
And in .bashrc
file at the end there is:
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
Should I only delete (or comment with #
) the ones from .bash_profile
? Or maybe from both files?