Skip to content

Commit 314b2e7

Browse files
committed
Point to Python version 3.4.1 instead of 3.4.0.
1 parent d6e2ee9 commit 314b2e7

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

install_python/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ Django is written in Python. We need it to do anything in Django. Let's start wi
1414

1515
### Windows
1616

17-
You can download Python for Windows from the website https://www.python.org/download/releases/3.4.0/. After downloading the ***.msi** file, you should execute it (double-click on it) and follow the instructions there. It is important to remember the path (the folder) where we installed Python. It will be needed later.
17+
You can download Python for Windows from the website https://www.python.org/download/releases/3.4.1/. After downloading the ***.msi** file, you should execute it (double-click on it) and follow the instructions there. It is important to remember the path (the folder) where we installed Python. It will be needed later.
1818

1919
### Linux
2020

2121
It is very likely that you already have Python installed out of the box. To check if you have it installed (and which version it is), you type in a console:
2222

2323
$ python --version
24-
Python 3.4.0
24+
Python 3.4.1
2525

2626
If you don't have Python installed or you want a different version, you can install it as follows.
2727

@@ -40,7 +40,7 @@ Yout type in the console:
4040

4141
### OS X
4242

43-
You need to go to the website https://www.python.org/downloads/release/python-340/ and install the appropriate package for you operating system.
43+
You need to go to the website https://www.python.org/downloads/release/python-341/ and install the appropriate package for you operating system.
4444

4545
----
4646

try_python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To start tinkering with Python, we need to open up a *prompt* on your computer.
1111
A window should pop up on your screen. This window is a prompt, waiting for commands from you. We want to open up a Python console, so type in `python` and hit Enter.
1212

1313
(workshops) ~$ python
14-
Python 3.4.0 (...)
14+
Python 3.4.1 (...)
1515
Type "copyright", "credits" or "license" for more information.
1616
>>>
1717

0 commit comments

Comments
 (0)