¿Por qué mi Python instalado a través de Home Brew no incluye Tkinter?

He instalado mi Python a través de homebrew en Mac.

brew install python

y después de eso compruebo mi versión de Python como 2.7.11, luego intenté realizar

import Tkinter

Tengo el siguiente mensaje de error:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tkinter.py", line 39, in <module>
    import _tkinter # If this fails your Python may not be configured for Tk
ImportError: No module named _tkinter

Respuestas a la pregunta(4)

Su respuesta a la pregunta