I'm using Ubuntu and I just updated my python3 from 3.8 to 3.9 but when I'm running Python3 on terminal it opens the
3.8 version and not the 3.9.
How can I change this? thanks a lot.
python3 --version
1 Answer
You don't. python3.8 is a distribution used by other programs on Ubuntu, which expect that dependencies on python3-<package name> install in a way that python3 can import them. If you change the linkage, any number of (possibly important) packages might break, e.g. gnome-terminal. Just use python3.9 explicitly.
python-is-python3.python(notpython3)