autoenv.plugin.zsh 1.75 KB
Newer Older
1
# Initialization: activate autoenv or report its absence
2
() {
3
local d autoenv_dir install_locations
4
if ! type autoenv_init >/dev/null; then
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  # Check if activate.sh is in $PATH
  if (( $+commands[activate.sh] )); then
    autoenv_dir="${commands[activate.sh]:h}"
  fi

  # Locate autoenv installation
  if [[ -z $autoenv_dir ]]; then
    install_locations=(
      ~/.autoenv
      ~/.local/bin
      /usr/local/opt/autoenv
      /usr/local/bin
      /usr/share/autoenv-git
      ~/Library/Python/bin
    )
    for d ( $install_locations ); do
      if [[ -e $d/activate.sh ]]; then
        autoenv_dir=$d
        break
      fi
    done
  fi

  # Look for Homebrew path as a last resort
  if [[ -z "$autoenv_dir" ]] && (( $+commands[brew] )); then
    d=$(brew --prefix)/opt/autoenv
31
32
33
    if [[ -e $d/activate.sh ]]; then
      autoenv_dir=$d
    fi
34
35
36
  fi

  # Complain if autoenv is not installed
37
38
39
40
41
42
43
44
45
46
  if [[ -z $autoenv_dir ]]; then 
    cat <<END >&2
-------- AUTOENV ---------
Could not locate autoenv installation.
Please check if autoenv is correctly installed.
In the meantime the autoenv plugin is DISABLED.
--------------------------
END
    return 1
  fi
47
  # Load autoenv
48
  source $autoenv_dir/activate.sh
LFDM's avatar
LFDM committed
49
fi
50
51
}
[[ $? != 0 ]] && return $?
LFDM's avatar
LFDM committed
52

53
54
55
# The use_env call below is a reusable command to activate/create a new Python
# virtualenv, requiring only a single declarative line of code in your .env files.
# It only performs an action if the requested virtualenv is not the current one.
LFDM's avatar
LFDM committed
56

57
use_env() {
58
59
60
61
62
63
64
65
66
67
68
  local venv
  venv="$1"
  if [[ "${VIRTUAL_ENV:t}" != "$venv" ]]; then
    if workon | grep -q "$venv"; then
      workon "$venv"
    else
      echo -n "Create virtualenv $venv now? (Yn) "
      read answer
      if [[ "$answer" == "Y" ]]; then
        mkvirtualenv "$venv"
      fi
69
    fi
70
  fi
71
}