comment installer tkinter à pycharm
# Install the future package
# Test to see if tkinter is installed using this code
import tkinter as tk
root = tk.Tk()
root.mainloop()
# Make sure the code is inside your main file or runs inside the main file
Amused Ape