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:
- 1. building for local, personal use.
- 2. building for distribution, which is "serious" dev territory.
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
- 2.1 distribution for other "local" users, like jeff from accounting
- 2.2 installing software on remote machines, but as "infrastructure": long iteration time, with a whole process behind them. For example to run websites
- 2.3 There is also the case of almost single use installs, for example in research, where all you want to do is get the research data, get the code, install it, run it, compare results and call it day.
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.