← 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

  1. Install: sudo apt install python3-tk
  2. For Python 2: sudo apt install python-tk
  3. Test: python3 -c "import tkinter; tkinter._test()"