zsh/pip.zsh @ 95735c27a0c0

vim: Goodbye, taglist.  I never used you.
author Steve Losh <steve@stevelosh.com>
date Tue, 08 Feb 2011 16:51:47 -0500
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
}