pyenv.plugin.zsh 1.27 KB
Newer Older
Stig Sandbeck Mathisen's avatar
Stig Sandbeck Mathisen committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
_homebrew-installed() {
    type brew &> /dev/null
}

_pyenv-from-homebrew-installed() {
    brew --prefix pyenv &> /dev/null
}

FOUND_PYENV=0
pyenvdirs=("$HOME/.pyenv" "/usr/local/pyenv" "/opt/pyenv")

for pyenvdir in "${pyenvdirs[@]}" ; do
    if [ -d $pyenvdir/bin -a $FOUND_PYENV -eq 0 ] ; then
        FOUND_PYENV=1
        export PYENV_ROOT=$pyenvdir
        export PATH=${pyenvdir}/bin:$PATH
Arvind Chembarpu's avatar
Arvind Chembarpu committed
17
        eval "$(pyenv init - zsh)"
Superbil's avatar
Superbil committed
18
19
20
21

        if pyenv commands | command grep -q virtualenv-init; then
            eval "$(pyenv virtualenv-init - zsh)"
        fi
Stig Sandbeck Mathisen's avatar
Stig Sandbeck Mathisen committed
22
23
24
25
26
27
28
29

        function pyenv_prompt_info() {
            echo "$(pyenv version-name)"
        }
    fi
done
unset pyenvdir

30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
if [ $FOUND_PYENV -eq 0 ] ; then
    pyenvdir=$(brew --prefix pyenv 2> /dev/null)
    if [ $? -eq 0 -a -d $pyenvdir/bin ] ; then
        FOUND_PYENV=1
        export PYENV_ROOT=$pyenvdir
        export PATH=${pyenvdir}/bin:$PATH
        eval "$(pyenv init - zsh)"

        if pyenv commands | command grep -q virtualenv-init; then
            eval "$(pyenv virtualenv-init - zsh)"
        fi

        function pyenv_prompt_info() {
            echo "$(pyenv version-name)"
        }
    fi
fi

Stig Sandbeck Mathisen's avatar
Stig Sandbeck Mathisen committed
48
49
50
if [ $FOUND_PYENV -eq 0 ] ; then
    function pyenv_prompt_info() { echo "system: $(python -V 2>&1 | cut -f 2 -d ' ')" }
fi