# This plugin loads pyenv into the current shell and provides prompt info via # the 'pyenv_prompt_info' function. Also loads pyenv-virtualenv if available. # 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 FOUND_PYENV=0 else FOUND_PYENV=1 fi # Look for pyenv and try to load it (will only work on interactive shells) if [[ $FOUND_PYENV -ne 1 ]]; then 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 if [[ $FOUND_PYENV -ne 1 ]]; then if (( $+commands[brew] )) && dir=$(brew --prefix pyenv 2>/dev/null); then if [[ -d "$dir/bin" ]]; then FOUND_PYENV=1 fi fi fi # If we found pyenv, load it but show a caveat about non-interactive shells if [[ $FOUND_PYENV -eq 1 ]]; then cat <&1 | cut -f 2 -d ' ')" } fi unset FOUND_PYENV pyenvdirs dir