2018-04-22 18:03:58 +00:00
|
|
|
# This plugin loads pyenv into the current shell and provides prompt info via
|
|
|
|
# the 'pyenv_prompt_info' function. Also loads pyenv-virtualenv if available.
|
2013-11-19 08:12:05 +00:00
|
|
|
|
2021-07-26 09:46:15 +00:00
|
|
|
# Look for pyenv in $PATH and verify that it's not a part of pyenv-win in WSL
|
|
|
|
if ! command -v pyenv &>/dev/null; then
|
|
|
|
FOUND_PYENV=0
|
|
|
|
elif [[ "${commands[pyenv]}" = */pyenv-win/* && "$(uname -r)" = *icrosoft* ]]; then
|
2021-07-26 09:45:02 +00:00
|
|
|
FOUND_PYENV=0
|
2021-07-26 09:46:15 +00:00
|
|
|
else
|
|
|
|
FOUND_PYENV=1
|
2020-08-04 13:59:00 +00:00
|
|
|
fi
|
2018-05-15 10:07:23 +00:00
|
|
|
|
2021-07-26 09:45:02 +00:00
|
|
|
# Look for pyenv and try to load it (will only work on interactive shells)
|
2018-05-15 10:07:23 +00:00
|
|
|
if [[ $FOUND_PYENV -ne 1 ]]; then
|
2021-07-26 09:45:02 +00:00
|
|
|
pyenvdirs=("$HOME/.pyenv" "/usr/local/pyenv" "/opt/pyenv" "/usr/local/opt/pyenv")
|
|
|
|
for dir in $pyenvdirs; do
|
|
|
|
if [[ -d "$dir/bin" ]]; then
|
|
|
|
FOUND_PYENV=1
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
2018-05-15 10:07:23 +00:00
|
|
|
|
2021-07-26 09:45:02 +00:00
|
|
|
if [[ $FOUND_PYENV -ne 1 ]]; then
|
2018-05-15 10:07:23 +00:00
|
|
|
if (( $+commands[brew] )) && dir=$(brew --prefix pyenv 2>/dev/null); then
|
2021-07-26 09:45:02 +00:00
|
|
|
if [[ -d "$dir/bin" ]]; then
|
|
|
|
FOUND_PYENV=1
|
|
|
|
fi
|
2018-05-15 10:07:23 +00:00
|
|
|
fi
|
2021-07-26 09:45:02 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If we found pyenv, load it but show a caveat about non-interactive shells
|
|
|
|
if [[ $FOUND_PYENV -eq 1 ]]; then
|
2021-08-18 09:43:29 +00:00
|
|
|
cat >&2 <<EOF
|
2021-07-26 09:45:02 +00:00
|
|
|
Found pyenv, but it is badly configured. pyenv might not work for
|
|
|
|
non-interactive shells (for example, when run from a script).
|
|
|
|
${bold_color}
|
|
|
|
To fix this message, add these lines to the '.profile' and '.zprofile' files
|
|
|
|
in your home directory:
|
|
|
|
|
|
|
|
export PYENV_ROOT="${dir/#$HOME/\$HOME}"
|
|
|
|
export PATH="\$PYENV_ROOT/bin:\$PATH"
|
|
|
|
eval "\$(pyenv init --path)"
|
2021-08-18 09:43:29 +00:00
|
|
|
|
|
|
|
You'll need to restart your user session for the changes to take effect.${reset_color}
|
2021-07-26 09:45:02 +00:00
|
|
|
For more info go to https://github.com/pyenv/pyenv/#installation.
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# Configuring in .zshrc only makes pyenv available for interactive shells
|
|
|
|
export PYENV_ROOT=$dir
|
|
|
|
export PATH="$PYENV_ROOT/bin:$PATH"
|
|
|
|
eval "$(pyenv init --path)"
|
|
|
|
fi
|
2018-05-15 10:07:23 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $FOUND_PYENV -eq 1 ]]; then
|
2021-07-26 09:45:02 +00:00
|
|
|
eval "$(pyenv init - --no-rehash zsh)"
|
|
|
|
|
|
|
|
if (( ${+commands[pyenv-virtualenv-init]} )); then
|
|
|
|
eval "$(pyenv virtualenv-init - zsh)"
|
|
|
|
fi
|
|
|
|
|
|
|
|
function pyenv_prompt_info() {
|
|
|
|
echo "$(pyenv version-name)"
|
|
|
|
}
|
2018-04-22 18:03:58 +00:00
|
|
|
else
|
2021-07-26 09:45:02 +00:00
|
|
|
# Fall back to system python
|
|
|
|
function pyenv_prompt_info() {
|
|
|
|
echo "system: $(python -V 2>&1 | cut -f 2 -d ' ')"
|
|
|
|
}
|
2013-11-19 08:12:05 +00:00
|
|
|
fi
|
2018-05-15 10:07:23 +00:00
|
|
|
|
2019-05-08 07:51:05 +00:00
|
|
|
unset FOUND_PYENV pyenvdirs dir
|