@@ -19,9 +19,9 @@ outdated these days, so we need to upgrade:
1919 but it's worth noting this requirement here.
20202 . Head to [ the Python website] ( https://www.python.org/ ) .
21213 . Click "Downloads".
22- 4 . There will be two options; one for Python 3 and one for Python 2.
22+ 4 . There will be two options; one for Python 3 and one for Python 2.
2323 ** Download Python 3** . At the time of writing, the version available is
24- 3.5.2 .
24+ 3.8.3 .
25255 . When the download's complete, your browser should automatically mount the
2626 disk image and open a Finder window of what's inside, but if that doesn't
2727 happen, you'll have to find the file ` Python.mpkg ` in your downloads folder
@@ -36,9 +36,9 @@ If you get lost, have a look at this [tutorial with pictures on DiveIntoPython3]
3636
37371 . Head to [ the Python website] ( https://www.python.org/ ) .
38382 . Click "Downloads".
39- 3 . There will be two options; one for Python 3 and one for Python 2.
39+ 3 . There will be two options; one for Python 3 and one for Python 2.
4040 ** Download Python 3** . At the time of writing, the version available is
41- 3.5.2 .
41+ 3.8.3 .
42424 . Run the downloaded installer and click * Next* until you reach the
4343 * Customization* page.
44445 . Scroll down to the bottom and choose to * Add python.exe to PATH* .
@@ -54,7 +54,7 @@ differently, so these instructions may need to be modified for your situation.
5454
5555#### Debian/Ubuntu
5656
57- Python 3 is available via apt, so you can install it with `apt install
57+ Python 3 is available via apt, so you can install it with `apt install
5858python3`.
5959
6060#### Redhat/CentOS
@@ -96,7 +96,7 @@ On Windows, open `cmd` or on Mac OS / GNU/Linux open `terminal` and type
9696
9797What you should see is:
9898
99- $ python 3.5.2
99+ $ python 3.8.3
100100
101101On Mac OS running ` python --version ` might run the outdated Python 2.7 which is bundled with the operating system.
102102If this is your case, then you need to run ` python3 ` instead of ` python ` .
@@ -109,9 +109,9 @@ Now, open the *REPL* by typing:
109109
110110And you should see something like this:
111111
112- Python 3.5.2 (default, Aug 6 2016, 15:44:26)
112+ Python 3.8.3 (default, Aug 6 2016, 15:44:26)
113113 [GCC 5.4.0] on linux
114114 Type "help", "copyright", "credits" or "license" for more information.
115- >>>
115+ >>>
116116
117117Now you're all set!
0 commit comments