6 ms·
> There should be one-- and preferably only one --obvious way to do it. I just wish Python applied this approach to package management. It is needlessly compli
by lukeck 3y ago
> There should be one-- and preferably only one --obvious way to do it.
I just wish Python applied this approach to package management. It is needlessly complicated.
- Doxin 3y agoThe obvious part is definitely lacking, but the long and short of it is basically to ignore all the newfangled solutions. They are much more trouble than they are worth. Just use pip with a venv and a requirements.txt (easier) or a pyproject.toml (cleaner). I really fail to see what the newer tools actually bring to the table. From my experience they solve no actual problems and just introduce more bugs and weird behavior.