pyenv.plugin.zsh 2.8 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pyenv_config_warning() {
  local reason="$1"
  local pyenv_root="${PYENV_ROOT/#$HOME/\$HOME}"
  cat >&2 <<EOF
Found pyenv, but it is badly configured ($reason). pyenv might not
work correctly for non-interactive shells (for example, when run from a script).
${(%):-"%B%F{yellow}"}
To fix this message, add these lines to the '.profile' and '.zprofile' files
in your home directory:
${(%):-"%f"}
export PYENV_ROOT="$pyenv_root"
export PATH="\$PYENV_ROOT/bin:\$PATH"
eval "\$(pyenv init --path)"
${(%):-"%F{yellow}"}
You'll need to restart your user session for the changes to take effect.${(%):-%b%f}
For more information go to https://github.com/pyenv/pyenv/#installation.
EOF
}

20
21
# This plugin loads pyenv into the current shell and provides prompt info via
# the 'pyenv_prompt_info' function. Also loads pyenv-virtualenv if available.
Stig Sandbeck Mathisen's avatar
Stig Sandbeck Mathisen committed
22

23
24
25
26
# 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
27
  FOUND_PYENV=0
28
29
else
  FOUND_PYENV=1
30
fi
31

32
# Look for pyenv and try to load it (will only work on interactive shells)
33
if [[ $FOUND_PYENV -ne 1 ]]; then
34
35
36
37
38
39
40
  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
41

42
  if [[ $FOUND_PYENV -ne 1 ]]; then
43
    if (( $+commands[brew] )) && dir=$(brew --prefix pyenv 2>/dev/null); then
44
45
46
      if [[ -d "$dir/bin" ]]; then
        FOUND_PYENV=1
      fi
47
    fi
48
49
50
51
52
  fi

  # If we found pyenv, load it but show a caveat about non-interactive shells
  if [[ $FOUND_PYENV -eq 1 ]]; then
    # Configuring in .zshrc only makes pyenv available for interactive shells
53
    export PYENV_ROOT="$dir"
54
55
    export PATH="$PYENV_ROOT/bin:$PATH"
    eval "$(pyenv init --path)"
56
57
58

    # Show warning due to bad pyenv configuration
    pyenv_config_warning 'pyenv command not found in $PATH'
59
  fi
60
61
62
fi

if [[ $FOUND_PYENV -eq 1 ]]; then
63
  # Setup $PYENV_ROOT if not already set
64
65
  if [[ -z "$PYENV_ROOT" ]]; then
    export PYENV_ROOT="$(pyenv root)"
66
67
68
69
70
71
72
    pyenv_config_warning 'missing $PYENV_ROOT'
  fi

  # Add pyenv shims to $PATH if not already added
  if [[ -z "${path[(Re)$PYENV_ROOT/shims]}" ]]; then
    eval "$(pyenv init --path)"
    pyenv_config_warning 'missing pyenv shims in $PATH'
73
74
  fi

75
  # Load pyenv
76
77
  eval "$(pyenv init - --no-rehash zsh)"

78
  # If pyenv-virtualenv exists, load it
79
  if [[ -d "$PYENV_ROOT/plugins/pyenv-virtualenv" ]]; then
80
81
82
83
84
85
    eval "$(pyenv virtualenv-init - zsh)"
  fi

  function pyenv_prompt_info() {
    echo "$(pyenv version-name)"
  }
86
else
87
88
89
90
  # Fall back to system python
  function pyenv_prompt_info() {
    echo "system: $(python -V 2>&1 | cut -f 2 -d ' ')"
  }
Stig Sandbeck Mathisen's avatar
Stig Sandbeck Mathisen committed
91
fi
92

93
unset FOUND_PYENV pyenvdirs dir
94
unfunction pyenv_config_warning