/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python
è molto probabilmente un link simbolico .
readlink
su un collegamento simbolico ti darà il bersaglio.
Ad esempio sulla mia installazione di Mavericks ho seguito:
$readlink /System/Library/Frameworks/Python.framework/Versions/2.7/bin/python
python2
$readlink /System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2
python2.7
Il che significa che quando eseguo python
esegue effettivamente /System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7
C'è anche qualcosa di divertente quando si esegue /System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7
Prova questo
>>> import sys
>>> print sys.executable
Che restituirà questo:
/System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOs/Python