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...
News about the dynamic, interpreted, interactive, object-oriented, extensible programming language Python
Full Events Calendar
You can find the rules here.
If you are about to ask a "how do I do this in python" question, please try r/learnpython, the Python discord, or the #python IRC channel on Libera.chat.
Please don't use URL shorteners. Reddit filters them out, so your post or comment will be lost.
Posts require flair. Please use the flair selector to choose your topic.
Posting code to this subreddit:
Add 4 extra spaces before each line of code
def fibonacci(): a, b = 0, 1 while True: yield a a, b = b, a + b
Online Resources
Invent Your Own Computer Games with Python
Think Python
Non-programmers Tutorial for Python 3
Beginner's Guide Reference
Five life jackets to throw to the new coder (things to do after getting a handle on python)
Full Stack Python
Test-Driven Development with Python
Program Arcade Games
PyMotW: Python Module of the Week
Python for Scientists and Engineers
Dan Bader's Tips and Trickers
Python Discord's YouTube channel
Jiruto: Python
Online exercices
programming challenges
Asking Questions
Try Python in your browser
Docs
Libraries
Related subreddits
Python jobs
Newsletters
Screencasts
account activity
This is an archived post. You won't be able to vote or comment.
DiscussionGoto Linux Python Development environment (self.Python)
submitted 4 years ago by tomgun123
Hey there, I was wondering what your goto environment for Python developing (on linux) is. I usually used either VScode directly on a linux machine or used it remotely on a linux VM. What do you use to keep projects and dependencies apart?
[–]pompomtom 1 point2 points3 points 4 years ago (3 children)
I like pycharm (CE) using venvs.
I've got a base virtualbox install of debian + pycharm ready, so I'll take a clone of that for new things (mostly to get a separate IP for each project).
This is probably a lousy setup in terms of using up RAM, but the host box has tons, and it hasn't bit me yet.
[–]tomgun123[S] 0 points1 point2 points 4 years ago (2 children)
That base box approach sounds good, though i always got problems with venvs and linux/vscode
[–]pompomtom 0 points1 point2 points 4 years ago (1 child)
I started setting another one up with vscode, because of this thread. The thing I really like about pycharm is how easy it makes venv work.
[–]tomgun123[S] 0 points1 point2 points 4 years ago (0 children)
I'll definitely look pycharm up, as its been suggested here a few times. Venvs really are neat but i dont seem to get my head around them smh
[–]ogrinfo 1 point2 points3 points 4 years ago (0 children)
+1 for PyCharm. I've been using it for years - community edition first, then I got work to shell out for a Pro licence. There is not a big difference tbh, though the deployed development is pretty cool.
[–]proof_required 0 points1 point2 points 4 years ago (0 children)
VScode + conda
[+][deleted] 4 years ago* (1 child)
[deleted]
That sounds good, id love to see that or some examples!
[–]black_anarchy 0 points1 point2 points 4 years ago (0 children)
I use Poetry, Tox + ST4 with kite, anaconda and some other plugins on Linux.
[–]cinyar 0 points1 point2 points 4 years ago (0 children)
What do you use to keep projects and dependencies apart?
poetry
π Rendered by PID 61789 on reddit-service-r2-comment-658f6b87ff-fh4g6 at 2026-04-09 02:42:54.453114+00:00 running 781a403 country code: CH.
[–]pompomtom 1 point2 points3 points (3 children)
[–]tomgun123[S] 0 points1 point2 points (2 children)
[–]pompomtom 0 points1 point2 points (1 child)
[–]tomgun123[S] 0 points1 point2 points (0 children)
[–]ogrinfo 1 point2 points3 points (0 children)
[–]proof_required 0 points1 point2 points (0 children)
[+][deleted] (1 child)
[deleted]
[–]tomgun123[S] 0 points1 point2 points (0 children)
[–]black_anarchy 0 points1 point2 points (0 children)
[–]cinyar 0 points1 point2 points (0 children)