this post was submitted on 06 Aug 2023
607 points (97.3% liked)

Programmer Humor

18979 readers
305 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] kogasa@programming.dev -2 points 1 year ago (1 children)

How often are you writing scripts that accidentally require a specific minor version of Python 3 to run? If you have dependencies, 1) you're no longer scripting, and 2) you need to manage your runtime environment anyway.

[–] RubberDucky@programming.dev 1 points 1 year ago (1 children)

Runtime environments can change often, if you need to install your application on a ton of PC's you don't want to install python version 3.X on all of those instead you could just compile it into a native binary, pip is the most unsafe hell

[–] kogasa@programming.dev 0 points 1 year ago

If you're compiling a native binary you DEFINITELY aren't in scripting territory anymore.