I'm just starting to learn python. For this I want to install the latest version on Ubuntu 18.04. I have accessed the page https://www.python.org/downloads/.
Python 3.8.3 should be the current verison, right? I entered the following commands and expected phyton 3.8 to be installed on my computer.
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install python3.8
Unfortunately, this is not the case. At least this request shows me a different version number.
python3
Python 3.6.9 (default, Apr 18 2020, 01:56:04)
[GCC 8.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
Maybe I'm not reading it right?
What do the individual numbers mean and why can't I see 3.8 anywhere?
python3.8
in place ofpython3
give you? – gmatht Jun 21 '20 at 09:16python3.8
– michael Jun 21 '20 at 09:21Python 3.8.0 (default, Oct 28 2019, 16:14:01) [GCC 8.3.0] on linux
– astridx Jun 21 '20 at 09:25