Yoann LE BARS wrote: > > Hello, everybody out there! > > For the upcoming two years, I will have to follow the new versions of > Python. Not the preview release, but the up-to-date stable release – well, I > can wait for a couple of weeks after the release of the last stable version. > > As far as I know, Python is not part of backports. Is there any way > other > than pinning to install the last stable version of Python on a stable > version of Debian?
You will want to let the Debian python packages alone, and install new pythons from source in /opt/python-VER or such. Then use venvs to make sure that you are always getting the python you really want. Python source releases are here: https://www.python.org/downloads/source/ Once you get one compiled, the process will be pretty similar for any other. -dsr-