customtkinter Error
Closed this issue · 1 comments
M4TZ3-op commented
Traceback (most recent call last):
File "main.py", line 1, in
from app.ui import ImageDownloaderApp
File "/home/matze/Desktop/CoomerDL/app/ui.py", line 7, in
import customtkinter as ctk
ModuleNotFoundError: No module named 'customtkinter'
Emy69 commented
customtkinter depends on tkinter, so make sure that tkinter is properly installed before using customtkinter.
sudo apt-get install python3-tk
pip install customtkinter