light darkmode

the python install situation

It should be this easy:

my_python_tool install .

but it's not, so here we are.

what even is python?

I view python as one step above "scratch". Meaning "beginner / user friendly". The hello world is famously just this:

print("hello world")

that's just not the case for installs or building. Just look at this mess: https://packaging.python.org/en/latest/ The guide is so long it needs an introduction.

different cases

The way I see it, there is one basic distinction that precedes all other considerations:

Specifically, I want to build package A, to be used in package B, or within a local, small, closed source environemnt. It's the first step after, "Oh Boy, I sure am copy pasting this piece of code a lot between my projects. I guess I should turn it into a module".

Then there are cases for

venvs

venvs are a tool to manage different installed versions. I don't care for it, because my take on versioning is I use "the newest stable one". I update when something breaks. Package maintainers should take care that what they distribute makes sense, I just press "play". And frankly, that's the attitude I sort of expect from everyone else. See version pinning. You're telling me your <10 user github project needs pinned versions? grow up. There is probably a good reason the maintainer upped the versioning, unless there is a real DEPRACTED use case, which you should agree is bad anyway, that you can't change because you can't put in the man hours, wtf are you doing pinning your versions.