A flexible solution would be to point at this address using the address of an arbitrary python version.
Assuming you are using Ubuntu, you can find the installed Python versions with
ls /usr/bin | grep python
For me this printed:
dh_python2 python python2 python2.7 python3 python3.8 python3.8-config python3-config python3-futurize python3-pasteurize x86_64-linux-gnu-python3.8-config x86_64-linux-gnu-python3-config#
Now let's say you want to point to python 3.8. The following line of code presents python3.8 as the 1st alternative(Hence the 1 at the end).
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1
Now whenever the python is referred, instead of the /usr/bin/python folder, /usr/bin/python3.8 will be accessed.
You can enlist other alternatives too. To see which alternatives you have, use
update-alternatives --list python
Finally to switch between those alternatives, use
sudo update-alternatives --config python
which pythonandls /usr/bin/python?/usr/bin/python