How to Solve NameError: name 'Button' is not defined -- tkmacosx
Solution: Import the 'Button' module
To Solve the error, add the following line to the top of your code.
from tkmacosx import Button
For more information:
Python tkmacosx Button