bash/pip @ 11c087d7ffe0

Major refactoring.
author Steve Losh <steve@stevelosh.com>
date Wed, 07 Oct 2009 00:28:58 -0400
parents (none)
children (none)
#!/usr/bin/env bash

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
}