Thats nit my problem with it. My problem is that it’s too dynamic, especially that I can’t have proper types
hardcoreufo@lemmy.world 6 days ago
I try to avoid python for two main reasons. While coding, white spaces. Who thought that was a good idea? While using, shared dependancies, again who thought thay was a good idea? I have to use pipx or manually make a venv otherwise python scripts start breaking each other. May as well just package it with its own dependancies from the get go.
PlexSheep@infosec.pub 5 days ago
twice_hatch@midwest.social 5 days ago
I always use uv for Python stuff these days
balance8873@lemmy.myserv.one 6 days ago
These uh…aren’t issues you need to think about much.
hardcoreufo@lemmy.world 5 days ago
I literally have to think about dependancies every time i install a python script in Debian. It always says its externally managed and use pipx. Then its not in pipx so i have to make a venv. Any other language i download and compile and it only cares about dependancies at build time.
balance8873@lemmy.myserv.one 4 days ago
Oh I’ll agree there: whoever designed the way python works on Linux distros seems to have been brain dead. I’m also cool with any devs who think they should make user dependencies require pipx or any of the 53 not-quite-pip variants getting shot – not dead, just like in their calves or something. Small caliber.
I’ll note that python also only cares about dependencies at build time.
There are tools which allow you to build your full application including dependencies into an executable file.
ATPA9@feddit.org 5 days ago
Those are issues I was forced to think about a lot…