File "/usr/lib/python3.10/turtle.py", line 107, in import tkinter as TK ModuleNotFoundError: No module named 'tkinter'
Error occurring in linux python modules
File "/usr/lib/python3.10/turtle.py", line 107, in import tkinter as TK ModuleNotFoundError: No module named 'tkinter'
Error occurring in linux python modules
In Arch, Tk is available in the Arch repository. The following fixed it for me on Manjaro. Just type on the terminal:
pacman -S tk
If you are using one of Debian flavours, Ubuntu, Mint etc...
apt-get install tk
actually I found that this worked for UBUNTU for me (same for debian other flavours)
sudo apt-get install python3.10-tk
since I have python 3.10 you would need to use your version.