6 lines
161 B
Bash
6 lines
161 B
Bash
export PYENV_ROOT="$HOME/.pyenv"
|
|
if [ -d "$PYENV_ROOT" ] ; then
|
|
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
|
|
eval "$(pyenv init -)"
|
|
fi
|