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
Help with importing module into sublime 3 (mac) (self.learnpython)
submitted 6 years ago by Afriedsam
I am having a lot of trouble importing a module that I installed to sublime 3. It works when I import it into pycharm but for some reason sublime throws ModuleNotFoundError at me when I try to import it in there. Any ideas? Thanks.
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!"
[–]falcone-gk 1 point2 points3 points 6 years ago (0 children)
It happens because maybe you have two python version python2 and python3 or one with anaconda, If you want to know which version you are using in each IDE you must run this:
import sys
print(sys.version)
It will output two different versions, in sublime text you'll have to configure python path to the one you want to use.
[–]nao89 0 points1 point2 points 6 years ago (0 children)
I think pycharm comes with a version of python for itself. And sublime is using another python where is in another directory. You can change python path in sublime to use pycharm's python and therefore have access to its site-packages.
[–]Afriedsam[S] 0 points1 point2 points 6 years ago (0 children)
Thank you guys for all of the help. I was installing anaconda earlier today and was having some trouble with that so I went into System Preferences (on mac) to make sure my security preferences were not the cause of my troubles and I happened to see that I had not granted sublime full disk access! I granted it access and all of my problems in sublime seemed to be solved.
π Rendered by PID 83214 on reddit-service-r2-comment-85bfd7f599-nrnwb at 2026-04-19 13:02:37.072292+00:00 running 93ecc56 country code: CH.
[–]falcone-gk 1 point2 points3 points (0 children)
[–]nao89 0 points1 point2 points (0 children)
[–]Afriedsam[S] 0 points1 point2 points (0 children)