Error executing application with graphical interface in Python 3

0

Error executing application with graphical interface in Python 3.

File "/home/nexide/PycharmProjects/untitled1/.idea/testew.py", line 1, in <module>
    from tkinter import *
ImportError: No module named tkinter

Process finished with exit code 1

I'm using python 3.4 on Ubuntu 16.04

    
asked by anonymous 08.08.2016 / 17:29

1 answer

0

Try this:

sudo apt-get install python3-tk
    
08.08.2016 / 17:37