Probleme d'execution de customtkinter
Salut tout le monde,
Je suis tout nouveau en python et c'est mon premier post, je veut exploiter customtkinter, j'ai télécharger sur github, et dans le répertoire j'ai créer un fichier t.py, a l'aide de visual studio code je voulais faire mon premier code
Code:
1 2 3 4
| import customtkinter
root=customtkinter.CTk()
root.geometry=("300x300")
root.mainloop() |
mais voiçi ce que m'affiche le terminal
Traceback (most recent call last):
File "c:\Users\TMF\Desktop\py\exp\t1.py", line 1, in <module>
import customtkinter
^^^^^^^^^^^^^^^^^^^^
File "c:\Users\TMF\Desktop\py\exp\customtkinter\__init__.py", line 10, in <module>
from .windows.widgets.appearance_mode import AppearanceModeTracker
File "c:\Users\TMF\Desktop\py\exp\customtkinter\windows\__init__.py", line 1, in <module>
from .ctk_tk import CTk
File "c:\Users\TMF\Desktop\py\exp\customtkinter\windows\ctk_tk.py", line 7, in <module>
from packaging import version
ModuleNotFoundError: No module named 'packaging'
j'ai essayé d'exécuté pip install customtkinter et j'ai en réponse ça
Requirement already satisfied: customtkinter in c:\python312\lib\site-packages (5.2.2)
Requirement already satisfied: darkdetect in c:\python312\lib\site-packages (from customtkinter) (0.8.0)
Requirement already satisfied: packaging in c:\python312\lib\site-packages (from customtkinter) (24.0)
aidez moi SVP