I'm trying to set python 3.6 as default (instead of python 3.8)
The output of: update-alternatives --list python
:
/usr/bin/python3.6
/usr/bin/python3.8
the output of update-alternatives --config python
:
There are 2 choices for the alternative python (providing /usr/bin/python).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/python3.6 1 auto mode
1 /usr/bin/python3.6 1 manual mode
2 /usr/bin/python3.8 1 manual mode
the output of python --version
:
Python 3.8.8
Why the default version is 3.8 and not 3.6 ? what can I do ?