Skip to content

Commit 0efd04b

Browse files
authored
Update documented Python to reflect latest version
1 parent 0bd5949 commit 0efd04b

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

python/lesson0/tutorial.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ outdated these days, so we need to upgrade:
1919
but it's worth noting this requirement here.
2020
2. Head to [the Python website](https://www.python.org/).
2121
3. 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.
2525
5. 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

3737
1. Head to [the Python website](https://www.python.org/).
3838
2. 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.
4242
4. Run the downloaded installer and click *Next* until you reach the
4343
*Customization* page.
4444
5. 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
5858
python3`.
5959

6060
#### Redhat/CentOS
@@ -96,7 +96,7 @@ On Windows, open `cmd` or on Mac OS / GNU/Linux open `terminal` and type
9696

9797
What you should see is:
9898

99-
$ python 3.5.2
99+
$ python 3.8.3
100100

101101
On Mac OS running `python --version` might run the outdated Python 2.7 which is bundled with the operating system.
102102
If this is your case, then you need to run `python3` instead of `python`.
@@ -109,9 +109,9 @@ Now, open the *REPL* by typing:
109109

110110
And 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

117117
Now you're all set!

0 commit comments

Comments
 (0)