diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst index 27a91d08852..2601009f4e6 100644 --- a/Doc/tutorial/interpreter.rst +++ b/Doc/tutorial/interpreter.rst @@ -10,16 +10,16 @@ Using the Python Interpreter Invoking the Interpreter ======================== -The Python interpreter is usually installed as :file:`/usr/local/bin/python` on -those machines where it is available; putting :file:`/usr/local/bin` in your +The Python interpreter is usually installed as :file:`/usr/local/bin/python3.0` +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 :: - python + python3.0 -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 Python -guru or system administrator. (E.g., :file:`/usr/local/python` is a popular -alternative location.) +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 +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:\Python30`, though you can change this when you're running the @@ -58,8 +58,8 @@ Some Python modules are also useful as scripts. These can be invoked using ``python -m module [arg] ...``, which executes the source file for *module* as if you had spelled out its full name on the command line. -Note that there is a difference between ``python file`` and ``python