zsh/pip.zsh @ dbcbfa37f036

Update mutt/offlineimap.py

replaced sjl username with `whoami` for general purpose user detection
author fpischedda <francesco.pischedda@gmail.com>
date Tue, 02 Oct 2012 12:47:37 +0300
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
}