Specify Python Version For Virtualenvwrapper

Got Homebrew on my mac, then a new python 2.7.6 from Homebrew over the Mac’s Python 2.7.5. However, Virtual Env Wrapper for Python virtualenv automatically default back to the Mac’s Python 2.7.5. So to specify the Python Homebrew install, we need to use the

1
python
in
1
/usr/local/bin/python
whenever I start a new enviroment

mkvirtualenv -p /usr/local/bin/python [VirtualEnvName]

source