This used to work, but now both give the same result:
$ python -c 'from pip import __file__ as pip_loc; print pip_loc,'
/usr/local/lib/python2.7/dist-packages/pip/__init__.pyc
$ /tmp/.venv/bin/python -c 'from pip import __file__ as pip_loc; print pip_loc,'
/usr/local/lib/python2.7/dist-packages/pip/__init__.pyc
How do I get the /tmp/.venv
path?