This project needs the following:
Python 3.x (recommended 3.8 or higher)
Tkinter (comes pre-installed with Python)
datetime (built-in Python module, no extra install)
✅ Since everything is built-in with Python, you don’t need to install external packages.
python --version
or
python3 --version
Run this in Python shell:
import tkinter
print("Tkinter is working!")If you get no error, Tkinter is installed.
If you get an error, install it manually:
-
Windows: Tkinter comes with Python (no extra steps).
-
Linux (Ubuntu/Debian):
sudo apt-get install python3-tk
- MacOS: Tkinter is included in the official Python installer.