1- 3.6 .. _tut-using:
1+ .. _tut-using :
22
33****************************
44Using the Python Interpreter
@@ -10,25 +10,25 @@ Using the Python Interpreter
1010Invoking the Interpreter
1111========================
1212
13- The Python interpreter is usually installed as :file: `/usr/local/bin/python3.6 `
13+ The Python interpreter is usually installed as :file: `/usr/local/bin/python3.5 `
1414on those machines where it is available; putting :file: `/usr/local/bin ` in your
1515Unix shell's search path makes it possible to start it by typing the command:
1616
1717.. code-block :: text
1818
19- python3.6
19+ python3.5
2020
2121 to the shell. [# ]_ Since the choice of the directory where the interpreter lives
2222is an installation option, other places are possible; check with your local
2323Python guru or system administrator. (E.g., :file: `/usr/local/python ` is a
2424popular alternative location.)
2525
2626On Windows machines, the Python installation is usually placed in
27- :file: `C:\\ Python36 `, though you can change this when you're running the
27+ :file: `C:\\ Python35 `, though you can change this when you're running the
2828installer. To add this directory to your path, you can type the following
2929command into the command prompt in a DOS box::
3030
31- set path=%path%;C:\python36
31+ set path=%path%;C:\python35
3232
3333Typing an end-of-file character (:kbd: `Control - D ` on Unix, :kbd: `Control - Z ` on
3434Windows) at the primary prompt causes the interpreter to exit with a zero exit
@@ -96,8 +96,8 @@ with the *secondary prompt*, by default three dots (``...``). The interpreter
9696prints a welcome message stating its version number and a copyright notice
9797before printing the first prompt::
9898
99- $ python3.6
100- Python 3.6 (default, Sep 16 2015, 09:25:04)
99+ $ python3.5
100+ Python 3.5 (default, Sep 16 2015, 09:25:04)
101101 [GCC 4.8.2] on linux
102102 Type "help", "copyright", "credits" or "license" for more information.
103103 >>>
0 commit comments