this post was submitted on 02 Sep 2023
81 points (88.6% liked)
Programming
17326 readers
223 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 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
python is usually the next step up in admin land
python is a pretty standard install on linux systems since so many things like you're talking about use it
Not only that it's basically everywhere, but even if it's not, you can compile it using something like nuitka and still use it.
Huh, why doesn't python just ship this? Managing python installs is annoying as hell.
I would guess mostly because python interpretes are just about everywhere.
Also the binaries compiled with nuitka end up being much bigger in size. A simple script of a few kb can and up in the hundreds of mb when you start compiling the dependencies, so it's not a perfect solution.
This is about python packaging, like making/getting libraries/apps rather than compiling binaries, but it's pretty relevant here:
https://chriswarrick.com/blog/2023/01/15/how-to-improve-python-packaging/
Python or Perl. IIRC, I've seen systems with a Perl install by default, but not Python.