6 lines
190 B
Bash
6 lines
190 B
Bash
if [[ ${UID} -ge 1000 && ! ${USER} =~ -adm$ ]]; then
|
|
export PYENV_ROOT="$HOME/.pyenv"
|
|
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
|
|
eval "$(pyenv init - bash)"
|
|
fi
|