← All Kali Issues
Python
Tkinter not found
P Package
Medium
🔴 Error Message
ModuleNotFoundError: No module named tkinter
📖 What This Means
Tkinter GUI library not installed.
🔧 Step-by-Step Fix
- Install: sudo apt install python3-tk
- For Python 2: sudo apt install python-tk
- Test: python3 -c "import tkinter; tkinter._test()"