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
That should print out some things like `Collecting pythonanywhere`, and eventually end with a line saying `Successfully installed (...) pythonanywhere- (...)`.
@@ -161,7 +161,7 @@ Now we run the helper to automatically configure our app from GitHub. Type the f
Copy file name to clipboardExpand all lines: en/python_installation/instructions.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,13 @@ First check whether your computer is running a 32-bit version or a 64-bit versio
16
16
17
17
You can download Python for Windows from the website https://www.python.org/downloads/windows/. Click on the "Latest Python 3 Release - Python x.x.x" link. If your computer is running a **64-bit** version of Windows, download the **Windows x86-64 executable installer**. Otherwise, download the **Windows x86 executable installer**. After downloading the installer, you should run it (double-click on it) and follow the instructions there.
18
18
19
-
One thing to watch out for: During the installation, you will notice a window marked "Setup". Make sure you tick the "Add Python 3.6 to PATH" or 'Add Python to your environment variables" checkbox and click on "Install Now", as shown here (it may look a bit different if you are installing a different version):
19
+
One thing to watch out for: During the installation, you will notice a window marked "Setup". Make sure you tick the "Add Python {{ book.py_version }} to PATH" or 'Add Python to your environment variables" checkbox and click on "Install Now", as shown here (it may look a bit different if you are installing a different version):
20
20
21
21

22
22
23
23
When the installation completes, you may see a dialog box with a link you can follow to learn more about Python or about the version you installed. Close or cancel that dialog -- you'll be learning more in this tutorial!
24
24
25
-
Note: if you are using an older version of Windows (7, Vista, or any older version) and the Python 3.6.x installer fails with an error, you can try either:
25
+
Note: if you are using an older version of Windows (7, Vista, or any older version) and the Python {{ book.py_version }}.x installer fails with an error, you can try either:
26
26
1. install all Windows Updates and try to install Python again; or
27
27
2. install an [older version of Python](https://www.python.org/downloads/windows/), e.g., [3.4.6](https://www.python.org/downloads/release/python-346/).
28
28
@@ -40,7 +40,7 @@ data-collapse=true ces-->
40
40
You need to go to the website https://www.python.org/downloads/release/python-361/ and download the Python installer:
41
41
42
42
* Download the *Mac OS X 64-bit/32-bit installer* file,
43
-
* Double click *python-3.6.1-macosx10.6.pkg* to run the installer.
43
+
* Double click *python-{{ book.py_release }}-macosx10.x.pkg* to run the installer.
44
44
45
45
<!--endsec-->
46
46
@@ -52,10 +52,10 @@ It is very likely that you already have Python installed out of the box. To chec
52
52
{% filename %}command-line{% endfilename %}
53
53
```
54
54
$ python3 --version
55
-
Python 3.6.1
55
+
Python {{ book.py_release }}
56
56
```
57
57
58
-
If you have a different version of Python installed, at least 3.4.0 (e.g. 3.6.0), then you don't have to upgrade. If you don't have Python installed, or if you want a different version, first check what Linux distribution you are using with the following command:
58
+
If you have a different version of Python installed, at least 3.4.0 (e.g. {{ book.py_release }}), then you don't have to upgrade. If you don't have Python installed, or if you want a different version, first check what Linux distribution you are using with the following command:
59
59
60
60
{% filename %}command-line{% endfilename %}
61
61
```
@@ -108,11 +108,11 @@ Verify the installation was successful by opening a command prompt and running t
108
108
{% filename %}command-line{% endfilename %}
109
109
```
110
110
$ python3 --version
111
-
Python 3.6.1
111
+
Python {{ book.py_release }}
112
112
```
113
-
The version shown may be different from 3.6.1 -- it should match the version you installed.
113
+
The version shown may be different from {{ book.py_release }} -- it should match the version you installed.
114
114
115
-
**NOTE:** If you're on Windows and you get an error message that `python3` wasn't found, try using `python` (without the `3`) and check if it still might be a version of Python that is 3.4.0 or higher. If that doesn't work either, you may open a new command prompt and try again; this happens if you use a command prompt left open from before the Python installation.
115
+
**NOTE:** If you're on Windows and you get an error message that `python3` wasn't found, try using `python` (without the `3`) and check if it still might be a version of Python that is 3.4.0 or higher. If that doesn't work either, you may open a new command prompt and try again; this happens if you use a command prompt left open from before the Python installation.
0 commit comments