blob: 1021e5338046b9045cb468cce2da3b7d45596e80 [file] [log] [blame]
Georg Brandl3c8ce772007-11-01 20:58:08 +00001.. highlightlang:: none
2
Christian Heimesd8654cf2007-12-02 15:22:16 +00003.. _using-on-general:
4
Georg Brandl3c8ce772007-11-01 20:58:08 +00005Command line and environment
6============================
7
8The CPython interpreter scans the command line and the environment for various
9settings.
10
11.. note::
12
Christian Heimescbf3b5c2007-12-03 21:02:03 +000013 Other implementations' command line schemes may differ. See
Georg Brandl3c8ce772007-11-01 20:58:08 +000014 :ref:`implementations` for further resources.
15
16
Christian Heimesd8654cf2007-12-02 15:22:16 +000017.. _using-on-cmdline:
18
Georg Brandl3c8ce772007-11-01 20:58:08 +000019Command line
20------------
21
22When invoking Python, you may specify any of these options::
23
Christian Heimes8dc226f2008-05-06 23:45:46 +000024 python [-bdEiOsStuUvxX?] [-c command | -m module-name | script | - ] [args]
Georg Brandl3c8ce772007-11-01 20:58:08 +000025
26The most common use case is, of course, a simple invocation of a script::
27
28 python myscript.py
29
30
Christian Heimes81ee3ef2008-05-04 22:42:01 +000031.. _using-on-interface-options:
32
Georg Brandl3c8ce772007-11-01 20:58:08 +000033Interface options
34~~~~~~~~~~~~~~~~~
35
Christian Heimes81ee3ef2008-05-04 22:42:01 +000036The interpreter interface resembles that of the UNIX shell, but provides some
37additional methods of invocation:
Georg Brandl3c8ce772007-11-01 20:58:08 +000038
39* When called with standard input connected to a tty device, it prompts for
40 commands and executes them until an EOF (an end-of-file character, you can
41 produce that with *Ctrl-D* on UNIX or *Ctrl-Z, Enter* on Windows) is read.
42* When called with a file name argument or with a file as standard input, it
43 reads and executes a script from that file.
Christian Heimes81ee3ef2008-05-04 22:42:01 +000044* When called with a directory name argument, it reads and executes an
45 appropriately named script from that directory.
Georg Brandl3c8ce772007-11-01 20:58:08 +000046* When called with ``-c command``, it executes the Python statement(s) given as
47 *command*. Here *command* may contain multiple statements separated by
48 newlines. Leading whitespace is significant in Python statements!
Christian Heimes81ee3ef2008-05-04 22:42:01 +000049* When called with ``-m module-name``, the given module is located on the
Georg Brandl3c8ce772007-11-01 20:58:08 +000050 Python module path and executed as a script.
51
52In non-interactive mode, the entire input is parsed before it is executed.
53
54An interface option terminates the list of options consumed by the interpreter,
55all consecutive arguments will end up in :data:`sys.argv` -- note that the first
56element, subscript zero (``sys.argv[0]``), is a string reflecting the program's
57source.
58
59.. cmdoption:: -c <command>
60
61 Execute the Python code in *command*. *command* can be one ore more
62 statements separated by newlines, with significant leading whitespace as in
63 normal module code.
64
65 If this option is given, the first element of :data:`sys.argv` will be
Christian Heimes81ee3ef2008-05-04 22:42:01 +000066 ``"-c"`` and the current directory will be added to the start of
67 :data:`sys.path` (allowing modules in that directory to be imported as top
68 level modules).
Georg Brandl3c8ce772007-11-01 20:58:08 +000069
70
71.. cmdoption:: -m <module-name>
72
Christian Heimes81ee3ef2008-05-04 22:42:01 +000073 Search :data:`sys.path` for the named module and execute its contents as
74 the :mod:`__main__` module.
Georg Brandl3c8ce772007-11-01 20:58:08 +000075
76 Since the argument is a *module* name, you must not give a file extension
Christian Heimes81ee3ef2008-05-04 22:42:01 +000077 (``.py``). The ``module-name`` should be a valid Python module name, but
78 the implementation may not always enforce this (e.g. it may allow you to
79 use a name that includes a hyphen).
Georg Brandl3c8ce772007-11-01 20:58:08 +000080
81 .. note::
82
83 This option cannot be used with builtin modules and extension modules
Christian Heimes81ee3ef2008-05-04 22:42:01 +000084 written in C, since they do not have Python module files. However, it
85 can still be used for precompiled modules, even if the original source
86 file is not available.
Georg Brandl3c8ce772007-11-01 20:58:08 +000087
88 If this option is given, the first element of :data:`sys.argv` will be the
Christian Heimes81ee3ef2008-05-04 22:42:01 +000089 full path to the module file. As with the :option:`-c` option, the current
90 directory will be added to the start of :data:`sys.path`.
Georg Brandl3c8ce772007-11-01 20:58:08 +000091
92 Many standard library modules contain code that is invoked on their execution
93 as a script. An example is the :mod:`timeit` module::
94
95 python -mtimeit -s 'setup here' 'benchmarked code here'
96 python -mtimeit -h # for details
97
98 .. seealso::
99 :func:`runpy.run_module`
100 The actual implementation of this feature.
101
102 :pep:`338` -- Executing modules as scripts
103
104
Georg Brandl3c8ce772007-11-01 20:58:08 +0000105.. describe:: -
106
107 Read commands from standard input (:data:`sys.stdin`). If standard input is
108 a terminal, :option:`-i` is implied.
109
110 If this option is given, the first element of :data:`sys.argv` will be
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000111 ``"-"`` and the current directory will be added to the start of
112 :data:`sys.path`.
113
114
115.. describe:: <script>
116
117 Execute the Python code contained in *script*, which must be a filesystem
118 path (absolute or relative) referring to either a Python file, a directory
119 containing a ``__main__.py`` file, or a zipfile containing a
120 ``__main__.py`` file.
121
122 If this option is given, the first element of :data:`sys.argv` will be the
123 script name as given on the command line.
124
125 If the script name refers directly to a Python file, the directory
126 containing that file is added to the start of :data:`sys.path`, and the
127 file is executed as the :mod:`__main__` module.
128
129 If the script name refers to a directory or zipfile, the script name is
130 added to the start of :data:`sys.path` and the ``__main__.py`` file in
131 that location is executed as the :mod:`__main__` module.
132
133 .. versionchanged:: 2.5
134 Directories and zipfiles containing a ``__main__.py`` file at the top
135 level are now considered valid Python scripts.
136
137If no interface option is given, :option:`-i` is implied, ``sys.argv[0]`` is
138an empty string (``""``) and the current directory will be added to the
139start of :data:`sys.path`.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000140
141 .. seealso::
142 :ref:`tut-invoking`
143
144
Georg Brandl3c8ce772007-11-01 20:58:08 +0000145Generic options
146~~~~~~~~~~~~~~~
147
148.. cmdoption:: -?
149 -h
150 --help
151
152 Print a short description of all command line options.
153
154
155.. cmdoption:: -V
156 --version
157
158 Print the Python version number and exit. Example output could be::
159
160 Python 2.5.1
161
162
163Miscellaneous options
164~~~~~~~~~~~~~~~~~~~~~
165
Christian Heimes226679a2007-12-07 11:52:55 +0000166.. cmdoption:: -b
167
168 Issue a warning when comparing str and bytes. Issue an error when the
169 option is given twice (:option:`-bb`).
170
171
Christian Heimes790c8232008-01-07 21:14:23 +0000172.. cmdoption:: -B
173
174 If given, Python won't try to write ``.pyc`` or ``.pyo`` files on the
175 import of source modules. See also :envvar:`PYTHONDONTWRITEBYTECODE`.
176
177 .. versionadded:: 2.6
178
179
Georg Brandl3c8ce772007-11-01 20:58:08 +0000180.. cmdoption:: -d
181
182 Turn on parser debugging output (for wizards only, depending on compilation
183 options). See also :envvar:`PYTHONDEBUG`.
184
185
186.. cmdoption:: -E
187
188 Ignore all :envvar:`PYTHON*` environment variables, e.g.
189 :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set.
190
191
192.. cmdoption:: -i
193
194 When a script is passed as first argument or the :option:`-c` option is used,
195 enter interactive mode after executing the script or the command, even when
196 :data:`sys.stdin` does not appear to be a terminal. The
197 :envvar:`PYTHONSTARTUP` file is not read.
198
199 This can be useful to inspect global variables or a stack trace when a script
200 raises an exception. See also :envvar:`PYTHONINSPECT`.
201
202
203.. cmdoption:: -O
204
205 Turn on basic optimizations. This changes the filename extension for
206 compiled (:term:`bytecode`) files from ``.pyc`` to ``.pyo``. See also
207 :envvar:`PYTHONOPTIMIZE`.
208
209
210.. cmdoption:: -OO
211
212 Discard docstrings in addition to the :option:`-O` optimizations.
213
214
Georg Brandl3c8ce772007-11-01 20:58:08 +0000215
Georg Brandl3c8ce772007-11-01 20:58:08 +0000216
Christian Heimes8dc226f2008-05-06 23:45:46 +0000217<<<<<<< .working
218=======
219 .. seealso::
220 :file:`Tools/scripts/fixdiv.py`
221 for a use of ``warnall``
222
223 :pep:`238` -- Changing the division operator
224
225
226.. cmdoption:: -s
227
228 Don't add user site directory to sys.path
229
230 .. versionadded:: 2.6
231
232 .. seealso::
233
234 :pep:`370` -- Per user site-packages directory
235
236
237.. cmdoption:: -S
238
239>>>>>>> .merge-right.r62788
Georg Brandl3c8ce772007-11-01 20:58:08 +0000240 Disable the import of the module :mod:`site` and the site-dependent
241 manipulations of :data:`sys.path` that it entails.
242
243
244.. cmdoption:: -t
245
246 Issue a warning when a source file mixes tabs and spaces for indentation in a
247 way that makes it depend on the worth of a tab expressed in spaces. Issue an
248 error when the option is given twice (:option:`-tt`).
249
250
251.. cmdoption:: -u
252
253 Force stdin, stdout and stderr to be totally unbuffered. On systems where it
254 matters, also put stdin, stdout and stderr in binary mode.
255
256 Note that there is internal buffering in :meth:`file.readlines` and
257 :ref:`bltin-file-objects` (``for line in sys.stdin``) which is not influenced
258 by this option. To work around this, you will want to use
259 :meth:`file.readline` inside a ``while 1:`` loop.
260
261 See also :envvar:`PYTHONUNBUFFERED`.
262
263
264.. XXX should the -U option be documented?
265
266.. cmdoption:: -v
267
268 Print a message each time a module is initialized, showing the place
269 (filename or built-in module) from which it is loaded. When given twice
270 (:option:`-vv`), print a message for each file that is checked for when
271 searching for a module. Also provides information on module cleanup at exit.
272 See also :envvar:`PYTHONVERBOSE`.
273
274
275.. cmdoption:: -W arg
276
277 Warning control. Python's warning machinery by default prints warning
278 messages to :data:`sys.stderr`. A typical warning message has the following
279 form::
280
281 file:line: category: message
282
283 By default, each warning is printed once for each source line where it
284 occurs. This option controls how often warnings are printed.
285
286 Multiple :option:`-W` options may be given; when a warning matches more than
287 one option, the action for the last matching option is performed. Invalid
288 :option:`-W` options are ignored (though, a warning message is printed about
289 invalid options when the first warning is issued).
290
291 Warnings can also be controlled from within a Python program using the
292 :mod:`warnings` module.
293
294 The simplest form of argument is one of the following action strings (or a
295 unique abbreviation):
296
297 ``ignore``
298 Ignore all warnings.
299 ``default``
300 Explicitly request the default behavior (printing each warning once per
301 source line).
302 ``all``
303 Print a warning each time it occurs (this may generate many messages if a
304 warning is triggered repeatedly for the same source line, such as inside a
305 loop).
306 ``module``
307 Print each warning only only the first time it occurs in each module.
308 ``once``
309 Print each warning only the first time it occurs in the program.
310 ``error``
311 Raise an exception instead of printing a warning message.
312
313 The full form of argument is::
314
315 action:message:category:module:line
316
317 Here, *action* is as explained above but only applies to messages that match
318 the remaining fields. Empty fields match all values; trailing empty fields
319 may be omitted. The *message* field matches the start of the warning message
320 printed; this match is case-insensitive. The *category* field matches the
321 warning category. This must be a class name; the match test whether the
322 actual warning category of the message is a subclass of the specified warning
323 category. The full class name must be given. The *module* field matches the
324 (fully-qualified) module name; this match is case-sensitive. The *line*
325 field matches the line number, where zero matches all line numbers and is
326 thus equivalent to an omitted line number.
327
328 .. seealso::
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000329 :mod:`warnings` -- the warnings module
Georg Brandl3c8ce772007-11-01 20:58:08 +0000330
331 :pep:`230` -- Warning framework
332
333
334.. cmdoption:: -x
335
336 Skip the first line of the source, allowing use of non-Unix forms of
337 ``#!cmd``. This is intended for a DOS specific hack only.
338
339 .. warning:: The line numbers in error messages will be off by one!
340
Christian Heimesd8654cf2007-12-02 15:22:16 +0000341.. _using-on-envvars:
Georg Brandl3c8ce772007-11-01 20:58:08 +0000342
343Environment variables
344---------------------
345
Christian Heimes790c8232008-01-07 21:14:23 +0000346These environment variables influence Python's behavior.
347
Georg Brandl3c8ce772007-11-01 20:58:08 +0000348.. envvar:: PYTHONHOME
349
350 Change the location of the standard Python libraries. By default, the
Christian Heimese1c98112008-01-21 11:20:28 +0000351 libraries are searched in :file:`{prefix}/lib/python{version}` and
352 :file:`{exec_prefix}/lib/python{version}`, where :file:`{prefix}` and
Georg Brandl3c8ce772007-11-01 20:58:08 +0000353 :file:`{exec_prefix}` are installation-dependent directories, both defaulting
354 to :file:`/usr/local`.
355
356 When :envvar:`PYTHONHOME` is set to a single directory, its value replaces
357 both :file:`{prefix}` and :file:`{exec_prefix}`. To specify different values
Christian Heimese1c98112008-01-21 11:20:28 +0000358 for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}`.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000359
360
361.. envvar:: PYTHONPATH
362
Christian Heimes790c8232008-01-07 21:14:23 +0000363 Augment the default search path for module files. The format is the same as
Georg Brandl3c8ce772007-11-01 20:58:08 +0000364 the shell's :envvar:`PATH`: one or more directory pathnames separated by
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000365 :data:`os.pathsep` (e.g. colons on Unix or semicolons on Windows).
366 Non-existent directories are silently ignored.
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000367
368 In addition to normal directories, individual :envvar:`PYTHONPATH` entries
369 may refer to zipfiles containing pure Python modules (in either source or
370 compiled form). Extension modules cannot be imported from zipfiles.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000371
372 The default search path is installation dependent, but generally begins with
Christian Heimese1c98112008-01-21 11:20:28 +0000373 :file:`{prefix}/lib/python{version}`` (see :envvar:`PYTHONHOME` above). It
Georg Brandl3c8ce772007-11-01 20:58:08 +0000374 is *always* appended to :envvar:`PYTHONPATH`.
375
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000376 An additional directory will be inserted in the search path in front of
377 :envvar:`PYTHONPATH` as described above under
378 :ref:`using-on-interface-options`. The search path can be manipulated from
379 within a Python program as the variable :data:`sys.path`.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000380
381
382.. envvar:: PYTHONSTARTUP
383
384 If this is the name of a readable file, the Python commands in that file are
385 executed before the first prompt is displayed in interactive mode. The file
386 is executed in the same namespace where interactive commands are executed so
387 that objects defined or imported in it can be used without qualification in
388 the interactive session. You can also change the prompts :data:`sys.ps1` and
389 :data:`sys.ps2` in this file.
390
391
392.. envvar:: PYTHONY2K
393
394 Set this to a non-empty string to cause the :mod:`time` module to require
395 dates specified as strings to include 4-digit years, otherwise 2-digit years
396 are converted based on rules described in the :mod:`time` module
397 documentation.
398
399
400.. envvar:: PYTHONOPTIMIZE
401
402 If this is set to a non-empty string it is equivalent to specifying the
403 :option:`-O` option. If set to an integer, it is equivalent to specifying
404 :option:`-O` multiple times.
405
406
407.. envvar:: PYTHONDEBUG
408
409 If this is set to a non-empty string it is equivalent to specifying the
410 :option:`-d` option. If set to an integer, it is equivalent to specifying
411 :option:`-d` multiple times.
412
413
414.. envvar:: PYTHONINSPECT
415
416 If this is set to a non-empty string it is equivalent to specifying the
417 :option:`-i` option.
418
Christian Heimes790c8232008-01-07 21:14:23 +0000419 This variable can also be modified by Python code using :data:`os.environ`
420 to force inspect mode on program termination.
421
Georg Brandl3c8ce772007-11-01 20:58:08 +0000422
423.. envvar:: PYTHONUNBUFFERED
424
425 If this is set to a non-empty string it is equivalent to specifying the
426 :option:`-u` option.
427
428
429.. envvar:: PYTHONVERBOSE
430
431 If this is set to a non-empty string it is equivalent to specifying the
432 :option:`-v` option. If set to an integer, it is equivalent to specifying
433 :option:`-v` multiple times.
434
435
436.. envvar:: PYTHONCASEOK
437
438 If this is set, Python ignores case in :keyword:`import` statements. This
439 only works on Windows.
440
Christian Heimes790c8232008-01-07 21:14:23 +0000441
442.. envvar:: PYTHONDONTWRITEBYTECODE
443
444 If this is set, Python won't try to write ``.pyc`` or ``.pyo`` files on the
445 import of source modules.
446
447 .. versionadded:: 2.6
448
449
Christian Heimes8dc226f2008-05-06 23:45:46 +0000450.. envvar:: PYTHONNOUSERSITE
451
452 If this is set, Python won't add the user site directory to sys.path
453
454 .. seealso::
455
456 :pep:`370` -- Per user site-packages directory
457
458
459.. envvar:: PYTHONUSERBASE
460
461 Sets the base directory for the user site directory
462
463 .. seealso::
464
465 :pep:`370` -- Per user site-packages directory
466
467
Christian Heimes790c8232008-01-07 21:14:23 +0000468.. envvar:: PYTHONEXECUTABLE
469
470 If this environment variable is set, ``sys.argv[0]`` will be set to its
471 value instead of the value got through the C runtime. Only works on
472 MacOS X.
473
474
475Debug-mode variables
476~~~~~~~~~~~~~~~~~~~~
477
478Setting these variables only has an effect in a debug build of Python, that is,
479if Python was configured with the :option:`--with-pydebug` build option.
480
481.. envvar:: PYTHONTHREADDEBUG
482
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000483 If set, Python will print threading debug info.
Christian Heimes790c8232008-01-07 21:14:23 +0000484
485 .. versionchanged:: 2.6
486 Previously, this variable was called ``THREADDEBUG``.
487
488.. envvar:: PYTHONDUMPREFS
489
490 If set, Python will dump objects and reference counts still alive after
491 shutting down the interpreter.
492
493
494.. envvar:: PYTHONMALLOCSTATS
495
496 If set, Python will print memory allocation statistics every time a new
497 object arena is created, and on shutdown.
498