7 lines
120 B
Bash
7 lines
120 B
Bash
# Initializae pyenv
|
|
|
|
if can_run pyenv; then
|
|
export PYENV_ROOT=${PYENV_ROOT:-$HOME/.pyenv}
|
|
eval "$(pyenv init -)"
|
|
fi
|