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