2012-02-01 05:37:51 +01:00
|
|
|
#
|
|
|
|
# Enables local Python package installation.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
2012-04-12 13:06:37 +02:00
|
|
|
# Sebastian Wiesner <lunaryorn@googlemail.com>
|
2012-02-01 05:37:51 +01:00
|
|
|
#
|
|
|
|
|
2013-08-20 14:21:17 +02:00
|
|
|
# Load manually installed pyenv into the shell session.
|
|
|
|
if [[ -s "$HOME/.pyenv/bin/pyenv" ]]; then
|
|
|
|
path=("$HOME/.pyenv/bin" $path)
|
|
|
|
eval "$(pyenv init -)"
|
2012-09-25 18:57:57 +02:00
|
|
|
|
2013-08-20 14:21:17 +02:00
|
|
|
# Load package manager installed pyenv into the shell session.
|
|
|
|
elif (( $+commands[pyenv] )); then
|
|
|
|
eval "$(pyenv init -)"
|
2012-07-23 21:00:44 +02:00
|
|
|
|
2011-08-28 01:09:06 +02:00
|
|
|
# Prepend PEP 370 per user site packages directory, which defaults to
|
2013-01-28 23:08:56 +01:00
|
|
|
# ~/Library/Python on Mac OS X and ~/.local elsewhere, to PATH.
|
2011-08-28 01:09:06 +02:00
|
|
|
else
|
2013-08-20 14:21:17 +02:00
|
|
|
if [[ "$OSTYPE" == darwin* ]]; then
|
|
|
|
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-28 01:09:06 +02:00
|
|
|
fi
|
|
|
|
|
2012-04-12 13:06:37 +02:00
|
|
|
# Load virtualenvwrapper into the shell session.
|
2012-09-03 16:53:19 +02:00
|
|
|
if (( $+commands[virtualenvwrapper_lazy.sh] )); then
|
|
|
|
# Set the directory where virtual environments are stored.
|
2013-08-20 14:21:17 +02:00
|
|
|
export WORKON_HOME="$HOME/.virtualenvs"
|
2012-09-03 16:53:19 +02:00
|
|
|
|
2012-09-03 16:34:41 +02:00
|
|
|
# Disable the virtualenv prompt.
|
|
|
|
VIRTUAL_ENV_DISABLE_PROMPT=1
|
2012-09-03 16:53:19 +02:00
|
|
|
|
2012-09-03 16:37:56 +02:00
|
|
|
source "$commands[virtualenvwrapper_lazy.sh]"
|
2012-04-12 13:06:37 +02:00
|
|
|
fi
|
|
|
|
|
2012-08-15 14:00:08 +02:00
|
|
|
#
|
|
|
|
# Aliases
|
|
|
|
#
|
|
|
|
|
|
|
|
alias py='python'
|
2012-09-03 03:14:32 +02:00
|
|
|
|