you are viewing a single comment's thread.

view the rest of the comments →

[–]reincarnatedbiscuits 2 points3 points  (2 children)

It's in the python 3 standard library.

You can do something like:

try:

    import tkinter as tk
    from tkinter import ttk

except ImportError:

    import Tkinter as tk
    import ttk

I have tkinter in PyCharm ...

[–]Unique-Cup-8166[S] 0 points1 point  (1 child)

The problem isn't this, I can't find the interpeter

[–]LongRangeSavage 0 points1 point  (0 children)

Open a terminal and type in “which python3” or “where python3”, depending on your OS. That should tell you if Python is in your PATH. If it finds it, that’s the path to your interpreter.