Skip to content

Commit

Permalink
Updated instructions to Python 3.4.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmispelon committed Nov 8, 2014
1 parent 9b2e998 commit 9e21fc3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Then save it. Done!

We need to tell Heroku which Python version we want to use. This is simply done by creating a `runtime.txt` and putting the following text inside:

python-3.4.1
python-3.4.2

## mysite/local_settings.py

Expand Down
8 changes: 4 additions & 4 deletions python_installation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ Django is written in Python. We need Python to do anything in Django. Let's star

### Windows

You can download Python for Windows from the website https://www.python.org/downloads/release/python-341/. After downloading the ***.msi** file, you should run it (double-click on it) and follow the instructions there. It is important to remember the path (the directory) where you installed Python. It will be needed later!
You can download Python for Windows from the website https://www.python.org/downloads/release/python-342/. After downloading the ***.msi** file, you should run it (double-click on it) and follow the instructions there. It is important to remember the path (the directory) where you installed Python. It will be needed later!

### Linux

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), open a console and type the following command:

$ python3 --version
Python 3.4.1
Python 3.4.2

If you don't have Python installed or if you want a different version, you can install it as follows:

Expand All @@ -39,7 +39,7 @@ Use this command in your console:

### OS X

You need to go to the website https://www.python.org/downloads/release/python-341/ and download the Python installer:
You need to go to the website https://www.python.org/downloads/release/python-342/ and download the Python installer:

* download the *Mac OS X 64-bit/32-bit installer* *DMG* file,
* double click to open it,
Expand All @@ -48,7 +48,7 @@ You need to go to the website https://www.python.org/downloads/release/python-34
Verify the installation was successful by opening the *Terminal* application and running the `python3` command:

$ python3 --version
Python 3.4.1
Python 3.4.2

----

Expand Down
2 changes: 1 addition & 1 deletion python_introduction/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Once you're ready, follow the instructions below.
We want to open up a Python console, so type in `python3` and hit Enter.

$ python3
Python 3.4.1 (...)
Python 3.4.2 (...)
Type "copyright", "credits" or "license" for more information.
>>>

Expand Down

0 comments on commit 9e21fc3

Please sign in to comment.