Who said that I ever wanted to tie any program to a specific version of python? Certainly not me.In my mind it's just lazy and stupid for a programmer to tie the program to some version of the program language.
I too use pyenv, which @blackbird mentioned.
And in bash scripts where I use also python3, my shebang isSo it can any python3 version. This does not require even pyenv.Code:
#!/usr/bin/env python3
Once I get python3.14 installed, I plan to do what I always have been doing for ages: to run python3.14 -m venv venv in appropriate directories, set up PATH correctly, and then use the #!/usr/bin/env python3 convention.
Statistics: Posted by Hippo Man — 2026-01-01 21:31