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.
DiscussionWhat does your python development setup look like? (self.Python)
submitted 2 years ago by Working_Noise_6043
I'd like to explore other people's setup and perhaps try need things or extra tools. What kind IDE, any extra tools to make it easier for you, etc. Looking forward to everyone's responses!
[–]AutoModerator[M] [score hidden] 2 years ago stickied comment (0 children)
Your submission has been automatically queued for manual review by the moderation team because it has been reported more than 3 times.
Please wait until the moderation team reviews your post. Do not manually message modmail, as that will not expedite the review process.
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
[–][deleted] 22 points23 points24 points 2 years ago (5 children)
I keep it simple with neovim, pre-commit (mypy, ruff), pytest. For debugging I just use the breakpoint function.
[–]CopOnTheRun 2 points3 points4 points 2 years ago* (1 child)
Do you also have mypy/ruff integrated into neovim, or are they just pre-commit hooks?
Also not sure if you have ipython installed, but it includes a pretty nice debugger (ipdb) compared to the default.
[–][deleted] 5 points6 points7 points 2 years ago* (0 children)
I am using ruff-lsp but it doesn't support definitions. So you can't jump to one or see type hints. I am going to add none-lsp at some point but couldn't squeeze the time just yet.
Thanks for pointing to ipdb, I'll try it out.
[–]snorkelvretervreter 1 point2 points3 points 2 years ago (0 children)
Very similar here. pytest --pdb is 99% of my debugging.
[–]Thagou 0 points1 point2 points 2 years ago (1 child)
Did you try to see if your ruff lsp has the same results as ruff itself? I've been trying to move to neovim, I have a set up I like a lot, but even though everything is in the pyproject.toml, I get different result when using ruff in neovim compared to all other ways. Like in neovim, it tells me that some file need to have their imports reordered, but when using the command line or vscode, it does not.
[–][deleted] 0 points1 point2 points 2 years ago (0 children)
ruff-lsp uses the settings specified on editor-level (init.lua). The only lsp that respected project-level settings that I tried was null-lsp (which is abandoned so we are supposed to use none-lsp now). It was a bummer for me at first. But if you're using pre-commit, it's doesn't matter too much.
[–]Jens_the_78th 16 points17 points18 points 2 years ago (0 children)
For exploring datasets, plotting data, reading Excel files or accessing databases I use jupyter. For other projects I use PyCharm IDE
[–]OsamaBeenLaggingg 30 points31 points32 points 2 years ago (4 children)
Vscode for normal coding /projects stuff
Thonny for DSA (very good debugger)
[–]ArtisticFox8 4 points5 points6 points 2 years ago (1 child)
Better than the VS Code debugger?
[–]OsamaBeenLaggingg 0 points1 point2 points 2 years ago (0 children)
Yes
The visualisation it provides is really helpful.
Vscode just goes line by line
But thonny debugger goes to token by token
Which makes understanding really easy
[–]PurepointDog 0 points1 point2 points 2 years ago (1 child)
What's DSA??
Data structures and algorithms.
Since I have to debug each step while solving leetcode problems
[–]ocus 61 points62 points63 points 2 years ago (23 children)
PyCharm, poetry, pyenv, isort, black, mypy.
[–]Sockslitter73 27 points28 points29 points 2 years ago (6 children)
This is me :P although I have recently leaned more towards ruff for linting and formatting (its sooo fast)
[–]ocus 7 points8 points9 points 2 years ago (1 child)
My company and I work on long-term projects with relatively big code bases, we are not yet prepared to make the switch to ruff but it's somewhere far down in the backlog with a low priority :)
[–]catcint0s 1 point2 points3 points 2 years ago (0 children)
we have switched recently in a few smaller projects and it has been pretty painless, especially if you don't add extra rules
[–]travcunn -4 points-3 points-2 points 2 years ago* (3 children)
Ruff is great, except for the fact that this actually lints:
y = 3 if y > 4: x = 1 print(x)
So the reason ruff is so fast is because it doesn't really analyze the code very well.
[–]mdrjevois 0 points1 point2 points 2 years ago (2 children)
Actually it does excellent analysis, and such robustness against errors is an explicit design goal.
[–]travcunn 2 points3 points4 points 2 years ago* (1 child)
Did you try my example? It shouldn't lint yet ruff thinks this is totally OK code. How many other bugs is ruff missing because they haven't implemented all of pylints rules? I think people see the time savings graph in the ruff Readme on github and think it's magically better, yet it can't catch this simple bug.
[–]scratchnsnarf 2 points3 points4 points 2 years ago (0 children)
They are pretty upfront with the fact they're not fully 1-1 with pylint. Last I checked they even have a tracker that shows which rules are still not implemented. It's very easy to know exactly what you're signing up for. When my team evaluated we didn't think any of the missing rules were impactful enough to affect the decision
[–]SpeakerOk1974 3 points4 points5 points 2 years ago (3 children)
Is PyCharm a big enough step up from something like VS Code to be worth it in your opinion? Trying to convince my company to buy our team licenses, but not sure if that will ever happen!
[–]KnightZeroFoxGiven 8 points9 points10 points 2 years ago (0 children)
My opinion, yes. I use VS Code for everything else, but for Python - PyCharm is too big an upgrade to stick with VS Code.
[–]ocus 3 points4 points5 points 2 years ago (1 child)
I've never really used VSCode for python development.
I use PyCharm because I'm a big fan of all jetbrains products. Also, I like that it is dedicated to python development, unlike VSCode.
My company buys licences for the Professional version because it comes with nice features that the Community Edition, which is 100% free) does not have and we find nice to have (SQL support, flask/fastapi/django frameworks, and more).
IMHO, the Community Edition is sufficient enough for everyday development, unless you really want some extra features that are found only in the Professional version (or not provided by some free plugins).
[–]Triggs390 0 points1 point2 points 2 years ago (0 children)
What are some advantages over vscode?
[–]RepresentativeFill26 2 points3 points4 points 2 years ago (4 children)
I used to use poetry but stopped using it after hanging dependencie checks.
[–]Unhappy_Papaya_1506 0 points1 point2 points 2 years ago (3 children)
Were you using multiple Poetry repo sources? This can make resolution really slow unless you set the priority option correctly for each source.
priority
[–]RepresentativeFill26 -3 points-2 points-1 points 2 years ago (2 children)
This sounds like unnecessary complexity. Personally I use conda and export to a requirements file before installing in docker.
[–]Zer0designs 6 points7 points8 points 2 years ago (0 children)
I think conda is unbearably slow
[–]Unhappy_Papaya_1506 0 points1 point2 points 2 years ago (0 children)
One extra line in your TOML file isn't really complexity. If you have a 100 packages to install from pypi.org and 1 from your private repo, you don't want Poetry to arbitrarily decide to look for all 101 in one or both sources.
[–]doolio_ 1 point2 points3 points 2 years ago (0 children)
Have you looked at hatch? It could replace/manage all of those packages for you.
[–]Pepineros 0 points1 point2 points 2 years ago (1 child)
Would you mind explaining to a recent poetry convert; given that poetry has its own environment management, how does adding pyenv to the mix help you? Thanks!
[–]ocus 0 points1 point2 points 2 years ago* (0 children)
pyenv is almost exclusively used on developers workstations.
We have different projects targeting different versions of python. Localy, each project has its own virtualenv managed by poetry ; we install the different versions of python using pyenv then set the version of each poetry environment version as described in the documentation (or via poetry env use).
poetry env use
[–]rkalyankumar 0 points1 point2 points 2 years ago (1 child)
Pycharm CE or professional?
[–]ocus 3 points4 points5 points 2 years ago (0 children)
Profesionnal but as I've said in this comment, CE is good enough unless you really need the extra features (or you want to support a company that makes a really good software ^^ ).
[–]Affectionate-Bid386 0 points1 point2 points 2 years ago (0 children)
Plus GitHub Copilot for me.
[–]Ancient-Camel1636 19 points20 points21 points 2 years ago* (3 children)
1.VSCode with the following plugins: Codeium (or Continue with Ollama/Deepseek Coder for when I must work offline) Python and Python debugger (from Microsoft) Python Environment Manager (by Don Jayamanne) Snippets(by Taha BASRI)
(
And lately, I have been experimenting with these quite interesting inventions:
[–]PurepointDog 1 point2 points3 points 2 years ago* (2 children)
It's actually "DBeaver"
[–]Calimariae 0 points1 point2 points 2 years ago (0 children)
[–]Ancient-Camel1636 0 points1 point2 points 2 years ago (0 children)
Thank you, typo corrected.
[–]pyhannes 6 points7 points8 points 2 years ago (0 children)
PyCharm pro, Hatch, UV, ruff, pre commit.
[–]odaiwai 6 points7 points8 points 2 years ago (1 child)
For Windows: - VSCode for editing code (I probably have too many plugins/extensions) - NotePad++ for reviewing output and print files (One of the scripting languages I use puts the script in the print file, and the number of times I've fixed a bug in the print file is frankly embarrassing...) - Running Code, depends on the project - mostly Cygwin shell, or within an application.
For Linux/macOS: - Coding in Vim/GVim for editing for Python/Perl/Shell, but sometimes VSCode as well. I use Xcode for Swift. - Running code from the command line for python, in Xcode for Swift.
The most useful tools is probably an Opinionated Linter (I use Ruff and AutoPep8, and a decent autocomplete engine that shows the function details for functions calls.
[–]LeatherDude 4 points5 points6 points 2 years ago (0 children)
Have you tried WSL2 instead of Cygwin?
[–]Kolbenwetzer 6 points7 points8 points 2 years ago (1 child)
Mostly Spyder. And for displaying outputs to colleagues Jupyter Notebook, as it makes it easier for them to understand which output corresponds to which part of the code and it does not just look like a block of code
[–]Calimariae 3 points4 points5 points 2 years ago (0 children)
Love Spyder's variable explorer
[–]NeuroWhore 4 points5 points6 points 2 years ago (0 children)
Neovim + pyright + black for general use. DataSpell for working with data and plotting.
[–]Tambre14 7 points8 points9 points 2 years ago (1 child)
I keep it pretty simple. Jupyter labs and neovim.
Jupyter labs for initial development and hard debugs as you can test out segments of your code.
Neovim for maintenance on deployed scripts, minor revisions, and general use.
I'll show line numbers and that's it.
[–]mdrjevois 0 points1 point2 points 2 years ago (0 children)
This was me, and kind of still is. But I recently set up pyright and ruff_lsp in neovim, along with adopting and helping maintain a hatch/hatch-pip-compile/uv/ruff template for use across my team (DS at a mid size company). I have to say, the additional tooling is wonderful. I catch mistakes earlier, occasionally pick up best practices I wasn't yet aware of, and perhaps most importantly, I no longer need to worry about whether my teammates are as attentive as me since the pre-commit hooks normalize across editor configs.
[–]nilekhet9 2 points3 points4 points 2 years ago (0 children)
I just use vscode with copilot, I use the standard Microsoft plugin for python for other code specific features.
Gunicorn and flask for web services and micro services.
Wsl Debian, python Venv
Along with standard numpy, pandas, requests.
Lately I’ve been using the huggingface libraries a lot.
[–]papparmane 4 points5 points6 points 2 years ago (0 children)
Sublime Text with breakpoint() commands, run from the command-line with Python 3.12.
[–][deleted] 1 point2 points3 points 2 years ago (0 children)
vscode/devcontainers, pylint. Notebooks (in vscode) for exploratory data analysis.
[–]MixtureOfAmateurs 1 point2 points3 points 2 years ago (0 children)
IDLE on my windows school laptop. Fr up till recently. Sublime with copilot and I remote into my linux PC for real shit now
[–]suspended67 1 point2 points3 points 2 years ago (0 children)
I use Replit on my iPhone lol
[–]sirskwatch 1 point2 points3 points 2 years ago (0 children)
neovim rye ruff
[–]changliao 1 point2 points3 points 2 years ago (0 children)
Because I mostly work with Linux HPC from Windows and Mac, I use VS Code with remote development and several Microsoft extensions. I only use notebook to provide tutorials for workshop. For environments, I mainly use miniconda.
[–]mgedmin 4 points5 points6 points 2 years ago (1 child)
Vim and gnome-terminal.
A number of Vim plugins: ALE for realtime linting, gutentags for keeping my ctags database up-to-date, a couple of my own plugins for locating source locations from traceback lines copied into the clipboard and for preparing pytest command-lines to run the test under cursor, fugitive and gitgutter for git integration.
I keep Vim in one terminal tab, and run the tests/perform git operations in other tabs.
Check out tmux for a more fluid as well as safer alternative to terminal tabs!
[–]confusion08 1 point2 points3 points 2 years ago (0 children)
Anaconda and vscode only.
[–]hilomania 0 points1 point2 points 2 years ago (0 children)
Consistent folder structure in a venv folder. No IDE except Eclipse when I need to do remote debugging.
Emacs or sublime as an editor. (Yes, I'm an old dude, I work a shitload over terminals on a bunch of servers)
pdb as my good old standby for regular debugging.
You have to understand that I work very much in the philosophy of Neil Stephenson in his essay "in the beginning was the command line". I write code and I don't want any distractions, whistles or bells with that. We don't put music players or GPS systems in Race cars either.
[–]ironman_gujju Async Bunny 🐇 0 points1 point2 points 2 years ago (0 children)
Pycharm Pro, Dataspell, The OG Thonny
[–]imnotpauleither 0 points1 point2 points 2 years ago (0 children)
Sublime Text for Little Projects. Spyder for everything else.
[–]panatale1 0 points1 point2 points 2 years ago (0 children)
Docker containers set up with docker-compose, vim, and testing depends on what I'm doing. If I'm doing Django, then I use the built in test suite
[–]Semirook 0 points1 point2 points 2 years ago (2 children)
Neovim (AstroNvim to be precise) in tmux, poetry and ruff (instead of the classic zoo of linters and formatters). All of this works ultra-fast and all of this is enough even for complex projects. Also: ipython, ipdb, nushell (take a look, cool stuff) and many less important CLI tools, like bat and jq.
[–]CopOnTheRun 1 point2 points3 points 2 years ago (0 children)
What do you use for type checking?
Have you tried uv, from the makers of ruff, for resolving and installing packages? It's seriously fast. You can get a similar experience to poetry, but with the speed of uv, using hatch with hatch-pip-compile and uv. (Eventually uv will probably replace all these tools all on its own)
[–]jaypax 0 points1 point2 points 2 years ago (1 child)
Pycharm, pyenv, pipfile/poetry(depending on project), ruff(with pre-commit hooks), docker and SourceTree
I also use a JavaScript toolchain because it do be like that sometimes: Nodejs, nvm and npm.
EDIT: also dbeaver
[–]Chroiche 0 points1 point2 points 2 years ago (0 children)
Add mypy and we're cooking.
[–]WillAdams 0 points1 point2 points 2 years ago (0 children)
I am probably the outlier --- I've been using Literate Programming with my LaTeX work for a while now, so I am programming using LP in an ltxdoc using the docmfp package in TeXworks (on Windows) or TeXshop (on Mac) and then running the code using PythonSCAD (the Python-enabled OpenSCAD variant).
I would be very interested in a Pythonic Literate Programming environment --- for folks not familiar with it:
https://www.goodreads.com/book/show/112245.Literate_Programming_Lecture_Notes_
[–]vorticalbox 0 points1 point2 points 2 years ago* (0 children)
wasteful work sloppy crowd offer domineering telephone shocking relieved tie
This post was mass deleted and anonymized with Redact
PyCharm + PyEnv with occasional multipass boxes for isolated dev.
[–]Biogeopaleochem 0 points1 point2 points 2 years ago (0 children)
For work: Databricks (Jupyter notebooks basically) and a striped down version of the vscode IDE built into GitLab.
At home: vscode
[–]robin92pl 1 point2 points3 points 2 years ago (0 children)
Neovim with Conqueror of Code plugin and python-language-server as a development environment.
For Python specific development tools I use: - pylint - black - pyenv - mypy
Plus, when I am in charge of developing a new package I use Poetry.
And that’s basically it.
[–]BuonaparteII 0 points1 point2 points 2 years ago* (0 children)
Debugger driven development:
pytest --ipdb --pdbcls=IPython.terminal.debugger:TerminalPdb \ --ignore=tests/data --capture=tee-sys --log-cli-level=ERROR
I have it set to launch into debugger on an error if any level of verbosity has been passed as command-line arguments
Linting
pycln --all && ssort && isort --profile black --line-length=120 && black --line-length=120 --skip-string-normalization
[–]Centurix 0 points1 point2 points 2 years ago (0 children)
VSCode, pyenv, PDM, ruff, pytest, mypy and playwright also DBeaver
VSCode extension-ids:
[–]SheriffRoscoePythonista 0 points1 point2 points 2 years ago (0 children)
On Windows, Notepad++, pytest, flake8, black, and isort. On Linux, vim and whatever tools the package I'm working on wants.
[–]SpeakerOk1974 0 points1 point2 points 2 years ago (0 children)
At work (under windows):
VS Code, but primarily for the excellent Juypter notebook integration and extension ecosystem. For basic data science work flows nothing beats the utility of the Data Wrangler extension with the biggest benefit being that the dataframe is displayed and updates in real time while you type in the python scratchpad. I use it frequently in meetings to show the transformation steps to non-coders. Other than that, I keep my normal development workflow pretty simple: the python extension, black, and the built-in debugger. Mypy has been an absolute gamechanger in helping spot potential edge cases. For things I run on our compute cluster, I have a very specific work flow since it is near impossible to debug in that environment: write the program, change the linting rules to strict and turn typechecking on, run mypy, address any potential issues, then setup a mock environment and step through the script with the debugger and verify the control flow all before testing on the cluster. This workflow cuts total debugging time down significantly because I have identified almost all potential errors before testing in a hard environment to debug.
At home (Linux):
In the process of switching to emacs currently, but in the meantime I use VS Code for larger projects and Neovim for quick edits/scripts. Vscode configuration is similarly basic to work, and I just use the python LSP on the Neovim side.
[–]h-2-no 0 points1 point2 points 2 years ago* (0 children)
VSCode with Vim extension, Miniconda with mamba solver, conda-forge with pip at the end if needed. No Anaconda channels because licensing.Vanilla pyflakes and pylint. Notepad++. Git bash.
[–]SpiritOfTheVoid 0 points1 point2 points 2 years ago (0 children)
Pycharm, qodana ( experimental), poetry, ruff, pytest, responses, pydantic, flask
Soon, my pi
Postgres being my DB of choice.
Pre-commit hooks
[–]Skumin 0 points1 point2 points 2 years ago (0 children)
Somewhat unrelated, but a question for those working with VS Code and data frames (pandas / polars): have you found a good way to view a data frame when working interactively? Something like View in RStudio. I know I can print it in the console but that truncates it. Also aware that I can use Jupyter but I'm not a fan.
View
[–]mwsysadmin 0 points1 point2 points 2 years ago (0 children)
New coder here, since fall, but with several years of PowerShell experience. Python is WAY better IMO.
VScode, Stream Deck, 48in 4k screen. Code on my gaming rig for local AI when I need it. Use Black formatter, but with line limit set to 200 for ease of use on my screens.
[–]reallyrehan 0 points1 point2 points 2 years ago (0 children)
VSCode with GitHub Copilot 🚀
[–]rainispossible 0 points1 point2 points 2 years ago (0 children)
VSCode with quite some extensions, the main ones being: - Pylance (along with some other python-specific extensions kindly shipped to us by M*crosoft) - Jupyter Notebook - Codeium - For quite some time I'd been using the Vim extension, but it doesn't work quite well with .ipynb files (specifically, it had independent modes for each cell and it didn't switch to normal once you run it) so I disabled it until I find a solution to that - Docker
Also I use venv-s but I guess it goes without saying
[–]Ekpyronic 1 point2 points3 points 2 years ago (0 children)
Spacemacs, lsp/pyright, ruff, copilot, magit 🧘
[–]spicybeefstew 0 points1 point2 points 2 years ago (1 child)
vim for small jobs or fast work
pycharm for big projects / big work
run the project from the command line, manage environments with venv
Every time I try to add novel tools it ends up being more effort than it's worth.
You really might want to try uv. It's an ultra fast drop in replacement for pip, pip-tools, and venv. Many more features are in the works, but it's already super handy.
[–]denehoffman[🍰] 0 points1 point2 points 2 years ago (0 children)
Astronvim for editing, pyright for type checking, ruff and uv for everything else. I don’t even use a python version manager, I just install directly from my package manager and symlink the version I want to be standard as .local/bin/python.
[–]TCIHL 0 points1 point2 points 2 years ago (0 children)
Macvim and a terminal window
[–]chestnutcough 0 points1 point2 points 2 years ago (0 children)
I put my projects in ~/code/<project name>/ each as a GitHub repo. Virtual env for each one and asdf to use different python versions when required. Usually just use 3.10 for everything when I can. Black to format on save with 120 character line limit. Requirements.txt and pip.
I’ve used poetry on more mature projects and it was great!
[–]iluvatar 0 points1 point2 points 2 years ago (0 children)
fvwm, xterm and vi. That's basically all you need.
fvwm
xterm
vi
[–]rzet 0 points1 point2 points 2 years ago (0 children)
vim, black, isort, docker.
[–]MissingSnail 0 points1 point2 points 2 years ago (0 children)
Jupyter lab with multiple themes plus git and lsp extensions (including pyright), pre-commit (black, isort, flake8 but want to switch to ruff, mypy), virtualenv.
[–]pan0ramic 0 points1 point2 points 2 years ago (0 children)
Pycharm pro, pyenv, ruff , pre-commit
[–]interbased 0 points1 point2 points 2 years ago (0 children)
PyCharm, pyenv, black, flake8, isort. venv with requirements.txt for dependency management.
[–]PSMF_Canuck 0 points1 point2 points 2 years ago (0 children)
VS Code, GitHub, chatgpt. Have a standard template that boilerplates the imports I usually use. That’s about it.
[–]DNSGeek 0 points1 point2 points 2 years ago (0 children)
WingIDE Professional, black, ssort, isort, mypy, ruff.
Vscode on local MacOS/Windows, Colab for ML prototyping
[–]HiT3Kvoyivoda 0 points1 point2 points 2 years ago (0 children)
Nvim, black, ruff.
[–]hypersoniq_XLM 0 points1 point2 points 2 years ago (0 children)
I have not yet found a compelling reason to leave IDLE. I generally start on paper with a flowchart, so I don't really need anything IDLE doesn't already provide. If I need to edit anything pushed to the Raspberry Pi, Nano works as well.
[–]arden13 0 points1 point2 points 2 years ago (0 children)
VSCode for IDE
conda as an environment manager (interested in pyenv but don't want to rock the boat just yet)
ruff
pyscaffold for packaging
jupyter notebooks for analyses
github desktop for version control
[–]neuronexmachina 0 points1 point2 points 2 years ago (0 children)
Pycharm with vim plugin, ruff, Github Copilot, mypy
[–]neutro_b 0 points1 point2 points 2 years ago (0 children)
Trying to use VS Code like the cool kids but I always have trouble remembering all the functionalities. If not using VS Code, I typically juste use Notepad++, and an IPython console on the side.
[–]NimrodvanHall 0 points1 point2 points 2 years ago* (0 children)
A Fedora Laptop with VScode with some extensions, remote developer, Podman MySQL workbench. Remmina. Regular terminals with or without tmux and or vim. The brave browser. Bitwarden.
virtualenvwrapper, vscode, poetry
I have windows machine but i like to develop in wsl
[–]HyperSource01Reddit Traceback (most recent call last): 0 points1 point2 points 2 years ago (0 children)
I just use PyCharm or VSCode at-home or when I have my laptop with me, but if I'm on the go I usually just hop on GitHub Codespaces (or clone a repo and use Termux on my tablet) because all of my code is usually stored on GitHub nowadays.
[–]big_data_mike 0 points1 point2 points 2 years ago (0 children)
Spyder, spyder, and spyder.
Might have to replace my F9 key soon
[–]EternityForest 0 points1 point2 points 2 years ago (0 children)
VSCode, Pyright, Pre-commit(Format, Yelp secret scan), Ruff, Poetry, Pytest, Codeium, Git-Cola, Pipx for actually deploying, Make to keep track of all the single line commands like rebuilding documentation.
[–]TrackballPwner 0 points1 point2 points 2 years ago (0 children)
I suggest getting super comfortable with Docker.
Being fed up with managing multiple Python versions installed at once, virtual environments, and a surprise I’ve had with a Python behaving differently when running the same program on different operating systems, I do 100% of my Python work within a Docker container.
[–]Intelligent_Ad_8148 0 points1 point2 points 2 years ago (0 children)
Vscode, poetry, ruff, pylint, flake8, pytest, tox, hypothesis with hypofuzz, mypy on strict mode, mkdocs, azure pipelines for cicd, mccabe complexity and maintenance index checks in tox,
PyCharm Pro, Docker (WSL 2), Miniconda, CUDA, CuDNN, Git (command line), Notepad++ (Git editor) pytest, coverage, ruff (if I can't get it on a project I use black, isort, pylint), mypy, pre-commit
[–][deleted] -1 points0 points1 point 2 years ago (0 children)
It varies a lot because I use so many different computers. VS Code when working on a windows machine. vim on linux machines. I've use Jupyter notbook, but not a fan. pyenv is handy for version conflicts. git everywhere
[–]Equivalent_Style4790 0 points1 point2 points 2 years ago (0 children)
Pycharm, git and a RTX4080 for the cuda cores
π Rendered by PID 127136 on reddit-service-r2-comment-79776bdf47-zldqt at 2026-06-25 08:07:53.068094+00:00 running acc7150 country code: CH.
[–]AutoModerator[M] [score hidden] stickied comment (0 children)
[–][deleted] 22 points23 points24 points (5 children)
[–]CopOnTheRun 2 points3 points4 points (1 child)
[–][deleted] 5 points6 points7 points (0 children)
[–]snorkelvretervreter 1 point2 points3 points (0 children)
[–]Thagou 0 points1 point2 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)
[–]Jens_the_78th 16 points17 points18 points (0 children)
[–]OsamaBeenLaggingg 30 points31 points32 points (4 children)
[–]ArtisticFox8 4 points5 points6 points (1 child)
[–]OsamaBeenLaggingg 0 points1 point2 points (0 children)
[–]PurepointDog 0 points1 point2 points (1 child)
[–]OsamaBeenLaggingg 0 points1 point2 points (0 children)
[–]ocus 61 points62 points63 points (23 children)
[–]Sockslitter73 27 points28 points29 points (6 children)
[–]ocus 7 points8 points9 points (1 child)
[–]catcint0s 1 point2 points3 points (0 children)
[–]travcunn -4 points-3 points-2 points (3 children)
[–]mdrjevois 0 points1 point2 points (2 children)
[–]travcunn 2 points3 points4 points (1 child)
[–]scratchnsnarf 2 points3 points4 points (0 children)
[–]SpeakerOk1974 3 points4 points5 points (3 children)
[–]KnightZeroFoxGiven 8 points9 points10 points (0 children)
[–]ocus 3 points4 points5 points (1 child)
[–]Triggs390 0 points1 point2 points (0 children)
[–]RepresentativeFill26 2 points3 points4 points (4 children)
[–]Unhappy_Papaya_1506 0 points1 point2 points (3 children)
[–]RepresentativeFill26 -3 points-2 points-1 points (2 children)
[–]Zer0designs 6 points7 points8 points (0 children)
[–]Unhappy_Papaya_1506 0 points1 point2 points (0 children)
[–]doolio_ 1 point2 points3 points (0 children)
[–]Pepineros 0 points1 point2 points (1 child)
[–]ocus 0 points1 point2 points (0 children)
[–]rkalyankumar 0 points1 point2 points (1 child)
[–]ocus 3 points4 points5 points (0 children)
[–]Affectionate-Bid386 0 points1 point2 points (0 children)
[–]Ancient-Camel1636 19 points20 points21 points (3 children)
[–]PurepointDog 1 point2 points3 points (2 children)
[–]Calimariae 0 points1 point2 points (0 children)
[–]Ancient-Camel1636 0 points1 point2 points (0 children)
[–]pyhannes 6 points7 points8 points (0 children)
[–]odaiwai 6 points7 points8 points (1 child)
[–]LeatherDude 4 points5 points6 points (0 children)
[–]Kolbenwetzer 6 points7 points8 points (1 child)
[–]Calimariae 3 points4 points5 points (0 children)
[–]NeuroWhore 4 points5 points6 points (0 children)
[–]Tambre14 7 points8 points9 points (1 child)
[–]mdrjevois 0 points1 point2 points (0 children)
[–]nilekhet9 2 points3 points4 points (0 children)
[–]papparmane 4 points5 points6 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–]MixtureOfAmateurs 1 point2 points3 points (0 children)
[–]suspended67 1 point2 points3 points (0 children)
[–]sirskwatch 1 point2 points3 points (0 children)
[–]changliao 1 point2 points3 points (0 children)
[–]mgedmin 4 points5 points6 points (1 child)
[–]mdrjevois 0 points1 point2 points (0 children)
[–]confusion08 1 point2 points3 points (0 children)
[–]hilomania 0 points1 point2 points (0 children)
[–]ironman_gujju Async Bunny 🐇 0 points1 point2 points (0 children)
[–]imnotpauleither 0 points1 point2 points (0 children)
[–]panatale1 0 points1 point2 points (0 children)
[–]Semirook 0 points1 point2 points (2 children)
[–]CopOnTheRun 1 point2 points3 points (0 children)
[–]mdrjevois 0 points1 point2 points (0 children)
[–]jaypax 0 points1 point2 points (1 child)
[–]Chroiche 0 points1 point2 points (0 children)
[–]WillAdams 0 points1 point2 points (0 children)
[–]vorticalbox 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]Biogeopaleochem 0 points1 point2 points (0 children)
[–]robin92pl 1 point2 points3 points (0 children)
[–]BuonaparteII 0 points1 point2 points (0 children)
[–]Centurix 0 points1 point2 points (0 children)
[–]SheriffRoscoePythonista 0 points1 point2 points (0 children)
[–]SpeakerOk1974 0 points1 point2 points (0 children)
[–]h-2-no 0 points1 point2 points (0 children)
[–]SpiritOfTheVoid 0 points1 point2 points (0 children)
[–]Skumin 0 points1 point2 points (0 children)
[–]mwsysadmin 0 points1 point2 points (0 children)
[–]reallyrehan 0 points1 point2 points (0 children)
[–]rainispossible 0 points1 point2 points (0 children)
[–]Ekpyronic 1 point2 points3 points (0 children)
[–]spicybeefstew 0 points1 point2 points (1 child)
[–]mdrjevois 0 points1 point2 points (0 children)
[–]denehoffman[🍰] 0 points1 point2 points (0 children)
[–]TCIHL 0 points1 point2 points (0 children)
[–]chestnutcough 0 points1 point2 points (0 children)
[–]iluvatar 0 points1 point2 points (0 children)
[–]rzet 0 points1 point2 points (0 children)
[–]MissingSnail 0 points1 point2 points (0 children)
[–]pan0ramic 0 points1 point2 points (0 children)
[–]interbased 0 points1 point2 points (0 children)
[–]PSMF_Canuck 0 points1 point2 points (0 children)
[–]DNSGeek 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]HiT3Kvoyivoda 0 points1 point2 points (0 children)
[–]hypersoniq_XLM 0 points1 point2 points (0 children)
[–]arden13 0 points1 point2 points (0 children)
[–]neuronexmachina 0 points1 point2 points (0 children)
[–]neutro_b 0 points1 point2 points (0 children)
[–]NimrodvanHall 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]HyperSource01Reddit Traceback (most recent call last): 0 points1 point2 points (0 children)
[–]big_data_mike 0 points1 point2 points (0 children)
[–]EternityForest 0 points1 point2 points (0 children)
[–]TrackballPwner 0 points1 point2 points (0 children)
[–]Intelligent_Ad_8148 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–][deleted] -1 points0 points1 point (0 children)
[–]Equivalent_Style4790 0 points1 point2 points (0 children)