this post was submitted on 02 Oct 2025
71 points (93.8% liked)

Programming

22979 readers
320 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] oddlyqueer@lemmy.ml 3 points 4 days ago (1 children)

I'm glad it's not just me lol every so often I'll think "I haven't done a python project in a while I'll try FastAPI" or something and I have so many issues just getting the env set up.

[โ€“] brucethemoose@lemmy.world 3 points 4 days ago* (last edited 4 days ago)

It's so ridiculous that many projects don't even support pip+venv (much less system python packages. shivers). They literally check if that's what you're trying and pre-emptively fail.

Some projects become impossible to run in any combination because some dependency (looking at you, sentencepiece) no longer works outside a narrow set of circumstances, unless you hand build some obscure github PR, disable all the dependency checks and cross your fingers and hope the wheel builds.

And I'm sorry, but I don't have 200GB of space, tons of spare RAM, and an intricate docker passthrough setup for every random python project. I just have like four different 3rd party managers (conda/mamba, uv, poetry... what's the other one? Ugh)