I just installed Python 2.7.6.
$ python -V
Python 2.7.6
$ which python
/Library/Frameworks/Python.framework/Versions/2.7/bin/python
When I try to specify the Python version while creating a new virtualenv with
virtualenv -p /Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7.6 test
I get:
The executable /Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7.6 (from --python=/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7.6) does not exist
If I simply use virtualenv test to create a new virtualenv I still get Python 2.7.5.
What am I doing wrong?