I am getting this error message:
Traceback (most recent call last):
File "C:\Users\me\PycharmProjects\pythonProject2\main.py", line 1, in <module>
import future.moves.tkinter
File "C:\Users\me\PycharmProjects\pythonProject2\venv\lib\site-packages\future\moves\tkinter\__init__.py", line 27, in <module>
from tkinter import *
ModuleNotFoundError: No module named 'tkinter'
My code is
import future.moves.tkinter
I also tried
from future.moves import tkinter
Edit: Install a new python with tkinter and set the interpretator to that one