Skip to content

Latest commit

 

History

History
44 lines (23 loc) · 798 Bytes

File metadata and controls

44 lines (23 loc) · 798 Bytes

🛠 Requirements

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.

📥 How to Check Requirements

1. Check Python version

python --version

or

python3 --version

2. Verify Tkinter is installed

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:

  1. Windows: Tkinter comes with Python (no extra steps).

  2. Linux (Ubuntu/Debian):

sudo apt-get install python3-tk

  1. MacOS: Tkinter is included in the official Python installer.