You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
This document describes how to install Python 3.6 on Ubuntu Linux machines.
10
+
This document describes how to install Python 3.6or 3.8on Ubuntu Linux machines.
11
11
12
12
To see which version of Python 3 you have installed, open a command prompt and run
13
13
@@ -20,12 +20,12 @@ If you are using Ubuntu 16.10 or newer, then you can easily install Python 3.6 w
20
20
$ sudo apt-get update
21
21
$ sudo apt-get install python3.6
22
22
23
-
If you're using another version of Ubuntu (e.g. the latest LTS release), we recommend using the `deadsnakes PPA<https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa>`_ to install Python 3.6::
23
+
If you're using another version of Ubuntu (e.g. the latest LTS release) or you want to use a more current Python, we recommend using the `deadsnakes PPA<https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa>`_ to install Python 3.8::
24
24
25
25
$ sudo apt-get install software-properties-common
26
26
$ sudo add-apt-repository ppa:deadsnakes/ppa
27
27
$ sudo apt-get update
28
-
$ sudo apt-get install python3.6
28
+
$ sudo apt-get install python3.8
29
29
30
30
If you are using other Linux distribution, chances are you already have Python 3
31
31
pre-installed as well. If not, use your distribution's package manager.