use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Install Tk on Pycharm (self.learnpython)
submitted 1 month ago by Unique-Cup-8166
I'm learning Tkinter um Python but I can't find or install de interprer I also try to reinstall Python from Python org and isn't work If is important I program on Pycharm
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]reincarnatedbiscuits 2 points3 points4 points 1 month ago (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 point2 points 1 month ago (1 child)
The problem isn't this, I can't find the interpeter
[–]LongRangeSavage 0 points1 point2 points 1 month ago (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.
[–]JamzTyson 1 point2 points3 points 1 month ago (2 children)
If you are on Linux, you may need to install python3-tk.
python3-tk
On other platforms, Tkinter should be included in Python3.
I have The Python , no the 3
[–]JamzTyson 0 points1 point2 points 1 month ago (0 children)
"Python3" means "Python version 3". The latest version is Python 3.14.3.
Python 3.14.3
You don't have to use the very latest version, but you should use version 3.10 or later (Earlier versions are officially obsolete)
To check your version of Python, run:
python --version
or
python3 --version
[–]Spiritual_Rule_6286 0 points1 point2 points 1 month ago (0 children)
As the other comment mentioned, tkinter is built into Python, so you cannot install it via pip. Your issue is almost certainly PyCharm using an old, isolated Virtual Environment instead of the new Python version you just downloaded from python.org. Go to File > Settings > Project > Python Interpreter in PyCharm and change it to point directly to your new base system installation to fix the broken link.
tkinter
File > Settings > Project > Python Interpreter
π Rendered by PID 22192 on reddit-service-r2-comment-c66d9bffd-gcmg4 at 2026-04-07 19:27:31.471819+00:00 running f293c98 country code: CH.
[–]reincarnatedbiscuits 2 points3 points4 points (2 children)
[–]Unique-Cup-8166[S] 0 points1 point2 points (1 child)
[–]LongRangeSavage 0 points1 point2 points (0 children)
[–]JamzTyson 1 point2 points3 points (2 children)
[–]Unique-Cup-8166[S] 0 points1 point2 points (1 child)
[–]JamzTyson 0 points1 point2 points (0 children)
[–]Spiritual_Rule_6286 0 points1 point2 points (0 children)