I've looking up stuff and I couldn't find anything. I originally tried this code:
import sys
from tkinter import *
App = Tk()
App.geometry("600x400")
App.mainloop()
But I get an error saying there is no module called tkinter.
I've looking up stuff and I couldn't find anything. I originally tried this code:
import sys
from tkinter import *
App = Tk()
App.geometry("600x400")
App.mainloop()
But I get an error saying there is no module called tkinter.
If you already installed tkinter, try below code.
Update:
In Python2:
from Tkinter import some_module
In Python3:
from tkinter import some_module