diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-06-27 21:40:27 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-06-27 21:40:27 (GMT) |
commit | 46ea4f73b998364e020972eb80415e6004a917f2 (patch) | |
tree | 9b189911a06ae7f42f4225de27e3094b248646e5 /Doc/tutorial/interpreter.rst | |
parent | c216b27c427a5878237fb6420c221d59ec7f5285 (diff) | |
download | cpython-46ea4f73b998364e020972eb80415e6004a917f2.zip cpython-46ea4f73b998364e020972eb80415e6004a917f2.tar.gz cpython-46ea4f73b998364e020972eb80415e6004a917f2.tar.bz2 |
bump to 3.2a0
Diffstat (limited to 'Doc/tutorial/interpreter.rst')
-rw-r--r-- | Doc/tutorial/interpreter.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst index 72cbec9..43b42af 100644 --- a/Doc/tutorial/interpreter.rst +++ b/Doc/tutorial/interpreter.rst @@ -10,11 +10,11 @@ Using the Python Interpreter Invoking the Interpreter ======================== -The Python interpreter is usually installed as :file:`/usr/local/bin/python3.1` +The Python interpreter is usually installed as :file:`/usr/local/bin/python3.2` on those machines where it is available; putting :file:`/usr/local/bin` in your Unix shell's search path makes it possible to start it by typing the command :: - python3.1 + python3.2 to the shell. [#]_ Since the choice of the directory where the interpreter lives is an installation option, other places are possible; check with your local @@ -22,11 +22,11 @@ Python guru or system administrator. (E.g., :file:`/usr/local/python` is a popular alternative location.) On Windows machines, the Python installation is usually placed in -:file:`C:\\Python31`, though you can change this when you're running the +:file:`C:\\Python32`, though you can change this when you're running the installer. To add this directory to your path, you can type the following command into the command prompt in a DOS box:: - set path=%path%;C:\python31 + set path=%path%;C:\python32 Typing an end-of-file character (:kbd:`Control-D` on Unix, :kbd:`Control-Z` on Windows) at the primary prompt causes the interpreter to exit with a zero exit |