I'm trying to update from Python 3.6.8 to Python 3.7.
I followed these steps:
sudo apt-get install python3.7
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 1 sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 2
sudo update-alternatives --config python3
and choose Python 3.7
Check the Python version using
python3 -V
. It showsPython 3.6.8
.
What can I do?