diff --git a/modules/python/init.zsh b/modules/python/init.zsh index be48487..6f8ae7f 100644 --- a/modules/python/init.zsh +++ b/modules/python/init.zsh @@ -9,10 +9,12 @@ # Load manually installed pyenv into the shell session. if [[ -s "$HOME/.pyenv/bin/pyenv" ]]; then path=("$HOME/.pyenv/bin" $path) + export PYENV_ROOT=$(pyenv root) eval "$(pyenv init -)" # Load package manager installed pyenv into the shell session. elif (( $+commands[pyenv] )); then + export PYENV_ROOT=$(pyenv root) eval "$(pyenv init -)" # Prepend PEP 370 per user site packages directory, which defaults to