Files
linux-workspace/rc.local/pyenv.sh
2023-02-25 14:05:40 +01:00

9 lines
158 B
Bash

# Initializae pyenv
if (( ! $LWS_FAST )); then
if can_run pyenv; then
export PYENV_ROOT=${PYENV_ROOT:-$HOME/.pyenv}
eval "$(pyenv init -)"
fi
fi