zsh/pip.zsh @ 5ddfd5a61ea1

Update with various crap from the past few weeks.
author Steve Losh <steve@stevelosh.com>
date Thu, 13 Jun 2013 10:44:08 -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
}