Only call pyenv init once

This commit is contained in:
John Britton 2023-10-05 14:45:56 -04:00
parent 5ac930d96b
commit 352f1fc4ea
No known key found for this signature in database
GPG key ID: 0EDB5B1148D612F2

View file

@ -29,10 +29,10 @@ if [[ -s "${local_pyenv::=${PYENV_ROOT:-$HOME/.pyenv}/bin/pyenv}" ]] \
autoload -Uz is-at-least
if is-at-least 2 ${"$(pyenv --version 2>&1)"[(w)2]}; then
eval "$(pyenv init --path zsh)"
else
eval "$(pyenv init - zsh)"
fi
eval "$(pyenv init - zsh)"
# Prepend PEP 370 per user site packages directory, which defaults to
# ~/Library/Python on macOS and ~/.local elsewhere, to PATH. The
# path can be overridden using PYTHONUSERBASE.