zsh/pip.zsh @ 77915b6f0ed8

git: fix gl and gll aliases
author Steve Losh <steve@dwaiter.com>
date Mon, 12 Jul 2010 00:32:25 -0400
parents 95b6f336d3ba
children (none)
#!/usr/bin/env zsh

export PIP_VIRTUALENV_BASE=$WORKON_HOME

PIP_BIN="`which pip`"
alias pip-sys="$PIP_BIN"

pip() {
    if [ -n "$VIRTUAL_ENV" ]
    then $PIP_BIN -E "$VIRTUAL_ENV" "$@"
    else echo "Not currently in a venv -- use pip-sys to work system-wide."
    fi
}