2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
# Enables local Python package installation.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
2012-04-12 11:06:37 +00:00
|
|
|
# Sebastian Wiesner <lunaryorn@googlemail.com>
|
2017-11-13 00:20:52 +00:00
|
|
|
# Patrick Bos <egpbos@gmail.com>
|
2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
|
2013-08-20 12:21:17 +00:00
|
|
|
# Load manually installed pyenv into the shell session.
|
|
|
|
if [[ -s "$HOME/.pyenv/bin/pyenv" ]]; then
|
|
|
|
path=("$HOME/.pyenv/bin" $path)
|
2017-08-26 16:16:09 +00:00
|
|
|
export PYENV_ROOT=$(pyenv root)
|
2013-08-20 12:21:17 +00:00
|
|
|
eval "$(pyenv init -)"
|
2012-09-25 16:57:57 +00:00
|
|
|
|
2013-08-20 12:21:17 +00:00
|
|
|
# Load package manager installed pyenv into the shell session.
|
|
|
|
elif (( $+commands[pyenv] )); then
|
2017-08-26 16:16:09 +00:00
|
|
|
export PYENV_ROOT=$(pyenv root)
|
2013-08-20 12:21:17 +00:00
|
|
|
eval "$(pyenv init -)"
|
2012-07-23 19:00:44 +00:00
|
|
|
|
2011-08-27 23:09:06 +00:00
|
|
|
# Prepend PEP 370 per user site packages directory, which defaults to
|
2014-03-17 17:31:21 +00:00
|
|
|
# ~/Library/Python on Mac OS X and ~/.local elsewhere, to PATH. The
|
|
|
|
# path can be overridden using PYTHONUSERBASE.
|
2011-08-27 23:09:06 +00:00
|
|
|
else
|
2014-03-17 17:31:21 +00:00
|
|
|
if [[ -n "$PYTHONUSERBASE" ]]; then
|
|
|
|
path=($PYTHONUSERBASE/bin $path)
|
|
|
|
elif [[ "$OSTYPE" == darwin* ]]; then
|
2013-08-20 12:21:17 +00:00
|
|
|
path=($HOME/Library/Python/*/bin(N) $path)
|
|
|
|
else
|
|
|
|
# This is subject to change.
|
|
|
|
path=($HOME/.local/bin $path)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Return if requirements are not found.
|
|
|
|
if (( ! $+commands[python] && ! $+commands[pyenv] )); then
|
|
|
|
return 1
|
2011-08-27 23:09:06 +00:00
|
|
|
fi
|
|
|
|
|
2017-05-31 00:26:18 +00:00
|
|
|
function _python-workon-cwd {
|
|
|
|
# Check if this is a Git repo
|
|
|
|
local GIT_REPO_ROOT=""
|
|
|
|
local GIT_TOPLEVEL="$(git rev-parse --show-toplevel 2> /dev/null)"
|
|
|
|
if [[ $? == 0 ]]; then
|
|
|
|
GIT_REPO_ROOT="$GIT_TOPLEVEL"
|
|
|
|
fi
|
|
|
|
# Get absolute path, resolving symlinks
|
|
|
|
local PROJECT_ROOT="${PWD:A}"
|
|
|
|
while [[ "$PROJECT_ROOT" != "/" && ! -e "$PROJECT_ROOT/.venv" \
|
|
|
|
&& ! -d "$PROJECT_ROOT/.git" && "$PROJECT_ROOT" != "$GIT_REPO_ROOT" ]]; do
|
|
|
|
PROJECT_ROOT="${PROJECT_ROOT:h}"
|
|
|
|
done
|
|
|
|
if [[ "$PROJECT_ROOT" == "/" ]]; then
|
|
|
|
PROJECT_ROOT="."
|
|
|
|
fi
|
|
|
|
# Check for virtualenv name override
|
|
|
|
local ENV_NAME=""
|
|
|
|
if [[ -f "$PROJECT_ROOT/.venv" ]]; then
|
|
|
|
ENV_NAME="$(cat "$PROJECT_ROOT/.venv")"
|
|
|
|
elif [[ -f "$PROJECT_ROOT/.venv/bin/activate" ]];then
|
|
|
|
ENV_NAME="$PROJECT_ROOT/.venv"
|
|
|
|
elif [[ "$PROJECT_ROOT" != "." ]]; then
|
|
|
|
ENV_NAME="${PROJECT_ROOT:t}"
|
|
|
|
fi
|
|
|
|
if [[ -n $CD_VIRTUAL_ENV && "$ENV_NAME" != "$CD_VIRTUAL_ENV" ]]; then
|
|
|
|
# We've just left the repo, deactivate the environment
|
|
|
|
# Note: this only happens if the virtualenv was activated automatically
|
|
|
|
deactivate && unset CD_VIRTUAL_ENV
|
|
|
|
fi
|
|
|
|
if [[ "$ENV_NAME" != "" ]]; then
|
|
|
|
# Activate the environment only if it is not already active
|
|
|
|
if [[ "$VIRTUAL_ENV" != "$WORKON_HOME/$ENV_NAME" ]]; then
|
|
|
|
if [[ -e "$WORKON_HOME/$ENV_NAME/bin/activate" ]]; then
|
|
|
|
workon "$ENV_NAME" && export CD_VIRTUAL_ENV="$ENV_NAME"
|
|
|
|
elif [[ -e "$ENV_NAME/bin/activate" ]]; then
|
|
|
|
source $ENV_NAME/bin/activate && export CD_VIRTUAL_ENV="$ENV_NAME"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-06-21 19:30:57 +00:00
|
|
|
# Load auto workon cwd hook
|
|
|
|
if zstyle -t ':prezto:module:python:virtualenv' auto-switch 'yes'; then
|
|
|
|
# Auto workon when changing directory
|
|
|
|
add-zsh-hook chpwd _python-workon-cwd
|
|
|
|
fi
|
|
|
|
|
2017-07-25 00:34:11 +00:00
|
|
|
# Load virtualenvwrapper into the shell session, if pre-requisites are met
|
|
|
|
# and unless explicitly requested not to
|
|
|
|
if (( $+VIRTUALENVWRAPPER_VIRTUALENV || $+commands[virtualenv] )) && \
|
|
|
|
zstyle -T ':prezto:module:python:virtualenv' initialize ; then
|
2012-09-03 14:53:19 +00:00
|
|
|
# Set the directory where virtual environments are stored.
|
2017-04-04 06:06:02 +00:00
|
|
|
export WORKON_HOME="${WORKON_HOME:-$HOME/.virtualenvs}"
|
2012-09-03 14:53:19 +00:00
|
|
|
|
2012-09-03 14:34:41 +00:00
|
|
|
# Disable the virtualenv prompt.
|
|
|
|
VIRTUAL_ENV_DISABLE_PROMPT=1
|
2012-09-03 14:53:19 +00:00
|
|
|
|
2017-08-18 03:53:25 +00:00
|
|
|
# Create a sorted array of available virtualenv related 'pyenv' commands to
|
|
|
|
# look for plugins of interest. Scanning shell '$path' isn't enough as they
|
|
|
|
# can exist in 'pyenv' synthesized paths (e.g., '~/.pyenv/plugins') instead.
|
|
|
|
local -a pyenv_plugins
|
|
|
|
if (( $+commands[pyenv] )); then
|
|
|
|
pyenv_plugins=(${(@oM)${(f)"$(pyenv commands --no-sh 2>/dev/null)"}:#virtualenv*})
|
|
|
|
fi
|
|
|
|
|
|
|
|
if (( $pyenv_plugins[(i)virtualenv-init] <= $#pyenv_plugins )); then
|
|
|
|
# Enable 'virtualenv' with 'pyenv'.
|
2017-08-04 14:53:01 +00:00
|
|
|
eval "$(pyenv virtualenv-init -)"
|
2017-08-18 03:53:25 +00:00
|
|
|
|
|
|
|
# Optionally activate 'virtualenvwrapper' plugin when available.
|
|
|
|
if (( $pyenv_plugins[(i)virtualenvwrapper(_lazy|)] <= $#pyenv_plugins )); then
|
|
|
|
pyenv "$pyenv_plugins[(R)virtualenvwrapper(_lazy|)]"
|
2017-07-25 00:34:11 +00:00
|
|
|
fi
|
|
|
|
else
|
2017-08-18 03:53:25 +00:00
|
|
|
# Fallback to 'virtualenvwrapper' without 'pyenv' wrapper if available
|
|
|
|
# in '$path' or in an alternative location on a Debian based system.
|
2017-12-11 19:01:40 +00:00
|
|
|
#
|
2017-12-15 01:23:40 +00:00
|
|
|
# If homebrew is installed and the python location wasn't overridden via
|
|
|
|
# environment variable we fall back to python3 then python2 in that order.
|
|
|
|
# This is needed to fix an issue with virtualenvwrapper as homebrew no
|
|
|
|
# longer shadows the system python.
|
|
|
|
if [[ -z "$VIRTUALENVWRAPPER_PYTHON" ]] && (( $+commands[brew] )); then
|
2017-12-15 01:11:03 +00:00
|
|
|
if (( $+commands[python3] )); then
|
|
|
|
export VIRTUALENVWRAPPER_PYTHON=$commands[python3]
|
|
|
|
elif (( $+commands[python2] )); then
|
|
|
|
export VIRTUALENVWRAPPER_PYTHON=$commands[python2]
|
|
|
|
fi
|
2017-12-11 19:01:40 +00:00
|
|
|
fi
|
|
|
|
|
2017-07-25 00:34:11 +00:00
|
|
|
virtenv_sources=(
|
|
|
|
${(@Ov)commands[(I)virtualenvwrapper(_lazy|).sh]}
|
|
|
|
/usr/share/virtualenvwrapper/virtualenvwrapper(_lazy|).sh(OnN)
|
|
|
|
)
|
2017-08-18 12:55:34 +00:00
|
|
|
if (( $#virtenv_sources )); then
|
|
|
|
source "${virtenv_sources[1]}"
|
|
|
|
fi
|
|
|
|
|
2017-07-25 00:34:11 +00:00
|
|
|
unset virtenv_sources
|
2017-04-18 10:14:22 +00:00
|
|
|
fi
|
2017-08-18 03:53:25 +00:00
|
|
|
|
|
|
|
unset pyenv_plugins
|
2012-04-12 11:06:37 +00:00
|
|
|
fi
|
|
|
|
|
2017-02-11 22:39:48 +00:00
|
|
|
# Load PIP completion.
|
2017-07-22 18:01:43 +00:00
|
|
|
if (( $#commands[(i)pip(|[23])] )); then
|
2017-11-10 19:37:11 +00:00
|
|
|
cache_file="${TMPDIR:-/tmp}/prezto-python-cache.$UID.zsh"
|
2017-02-11 22:39:48 +00:00
|
|
|
|
2017-07-25 00:34:11 +00:00
|
|
|
# Detect and use one available from among 'pip', 'pip2', 'pip3' variants
|
2017-07-22 18:01:43 +00:00
|
|
|
pip_command="$commands[(i)pip(|[23])]"
|
|
|
|
|
|
|
|
if [[ "$pip_command" -nt "$cache_file" || ! -s "$cache_file" ]]; then
|
2017-02-11 22:39:48 +00:00
|
|
|
# pip is slow; cache its output. And also support 'pip2', 'pip3' variants
|
2017-07-22 18:01:43 +00:00
|
|
|
$pip_command completion --zsh \
|
|
|
|
| sed -e "s|compctl -K [-_[:alnum:]]* pip|& pip2 pip3|" >! "$cache_file" 2> /dev/null
|
2017-02-11 22:39:48 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
source "$cache_file"
|
2017-07-25 00:34:11 +00:00
|
|
|
unset cache_file pip_command
|
2017-02-11 22:39:48 +00:00
|
|
|
fi
|
|
|
|
|
2017-11-13 00:20:52 +00:00
|
|
|
# Load conda into the shell session, if requested
|
|
|
|
zstyle -T ':prezto:module:python' conda-init
|
|
|
|
if (( $? && $+commands[conda] )); then
|
|
|
|
if (( $(conda ..changeps1) )); then
|
|
|
|
echo "To make sure Conda doesn't change your prompt (should do that in the prompt module) run:\n conda config --set changeps1 false"
|
|
|
|
# TODO:
|
|
|
|
# We could just run this ourselves. In an exit hook
|
|
|
|
# (add zsh-hook zshexit [(anonymous) function]) we could then set it back
|
|
|
|
# to the way it was before we changed it. However, I'm not sure if this is
|
|
|
|
# exception safe, so left it like this for now.
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2012-08-15 12:00:08 +00:00
|
|
|
#
|
|
|
|
# Aliases
|
|
|
|
#
|
|
|
|
|
|
|
|
alias py='python'
|
2017-07-25 00:34:11 +00:00
|
|
|
alias py2='python2'
|
|
|
|
alias py3='python3'
|