|
|
@ -6,29 +6,35 @@ |
|
|
|
# Sebastian Wiesner <lunaryorn@googlemail.com> |
|
|
|
# Sebastian Wiesner <lunaryorn@googlemail.com> |
|
|
|
# |
|
|
|
# |
|
|
|
|
|
|
|
|
|
|
|
# Load pythonz into the shell session. |
|
|
|
# Load manually installed pyenv into the shell session. |
|
|
|
if [[ -s $HOME/.pythonz/bin/pythonz ]]; then |
|
|
|
if [[ -s "$HOME/.pyenv/bin/pyenv" ]]; then |
|
|
|
path=($HOME/.pythonz/bin $path) |
|
|
|
path=("$HOME/.pyenv/bin" $path) |
|
|
|
fi |
|
|
|
eval "$(pyenv init -)" |
|
|
|
|
|
|
|
|
|
|
|
# Return if requirements are not found. |
|
|
|
# Load package manager installed pyenv into the shell session. |
|
|
|
if (( ! $+commands[python] && ! $+commands[pythonz] )); then |
|
|
|
elif (( $+commands[pyenv] )); then |
|
|
|
return 1 |
|
|
|
eval "$(pyenv init -)" |
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Prepend PEP 370 per user site packages directory, which defaults to |
|
|
|
# Prepend PEP 370 per user site packages directory, which defaults to |
|
|
|
# ~/Library/Python on Mac OS X and ~/.local elsewhere, to PATH. |
|
|
|
# ~/Library/Python on Mac OS X and ~/.local elsewhere, to PATH. |
|
|
|
if [[ "$OSTYPE" == darwin* ]]; then |
|
|
|
|
|
|
|
path=($HOME/Library/Python/*/bin(N) $path) |
|
|
|
|
|
|
|
else |
|
|
|
else |
|
|
|
# This is subject to change. |
|
|
|
if [[ "$OSTYPE" == darwin* ]]; then |
|
|
|
path=($HOME/.local/bin $path) |
|
|
|
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 |
|
|
|
fi |
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
# Load virtualenvwrapper into the shell session. |
|
|
|
# Load virtualenvwrapper into the shell session. |
|
|
|
if (( $+commands[virtualenvwrapper_lazy.sh] )); then |
|
|
|
if (( $+commands[virtualenvwrapper_lazy.sh] )); then |
|
|
|
# Set the directory where virtual environments are stored. |
|
|
|
# Set the directory where virtual environments are stored. |
|
|
|
export WORKON_HOME=$HOME/.virtualenvs |
|
|
|
export WORKON_HOME="$HOME/.virtualenvs" |
|
|
|
|
|
|
|
|
|
|
|
# Disable the virtualenv prompt. |
|
|
|
# Disable the virtualenv prompt. |
|
|
|
VIRTUAL_ENV_DISABLE_PROMPT=1 |
|
|
|
VIRTUAL_ENV_DISABLE_PROMPT=1 |
|
|
@ -42,14 +48,3 @@ fi |
|
|
|
|
|
|
|
|
|
|
|
alias py='python' |
|
|
|
alias py='python' |
|
|
|
|
|
|
|
|
|
|
|
# pythonz |
|
|
|
|
|
|
|
if (( $+commands[pythonz] )); then |
|
|
|
|
|
|
|
alias pyz='pythonz' |
|
|
|
|
|
|
|
alias pyzc='pythonz cleanup' |
|
|
|
|
|
|
|
alias pyzi='pythonz install' |
|
|
|
|
|
|
|
alias pyzl='pythonz list' |
|
|
|
|
|
|
|
alias pyzL='pythonz list -a' |
|
|
|
|
|
|
|
alias pyzu='pythonz update' |
|
|
|
|
|
|
|
alias pyzx='pythonz uninstall' |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|