Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 1 | .. highlightlang:: none |
| 2 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 3 | .. _using-on-general: |
| 4 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 5 | Command line and environment |
| 6 | ============================ |
| 7 | |
| 8 | The CPython interpreter scans the command line and the environment for various |
| 9 | settings. |
| 10 | |
Georg Brandl | 628e6f9 | 2009-10-27 20:24:45 +0000 | [diff] [blame] | 11 | .. impl-detail:: |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 12 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 13 | Other implementations' command line schemes may differ. See |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 14 | :ref:`implementations` for further resources. |
| 15 | |
| 16 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 17 | .. _using-on-cmdline: |
| 18 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 19 | Command line |
| 20 | ------------ |
| 21 | |
| 22 | When invoking Python, you may specify any of these options:: |
| 23 | |
Brett Cannon | 1e6711b | 2010-01-01 02:03:50 +0000 | [diff] [blame] | 24 | python [-bBdEhiOsSuvVWx?] [-c command | -m module-name | script | - ] [args] |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 25 | |
| 26 | The most common use case is, of course, a simple invocation of a script:: |
| 27 | |
| 28 | python myscript.py |
| 29 | |
| 30 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 31 | .. _using-on-interface-options: |
| 32 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 33 | Interface options |
| 34 | ~~~~~~~~~~~~~~~~~ |
| 35 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 36 | The interpreter interface resembles that of the UNIX shell, but provides some |
| 37 | additional methods of invocation: |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 38 | |
| 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 Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 44 | * When called with a directory name argument, it reads and executes an |
| 45 | appropriately named script from that directory. |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 46 | * 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 Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 49 | * When called with ``-m module-name``, the given module is located on the |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 50 | Python module path and executed as a script. |
| 51 | |
| 52 | In non-interactive mode, the entire input is parsed before it is executed. |
| 53 | |
| 54 | An interface option terminates the list of options consumed by the interpreter, |
| 55 | all consecutive arguments will end up in :data:`sys.argv` -- note that the first |
| 56 | element, subscript zero (``sys.argv[0]``), is a string reflecting the program's |
| 57 | source. |
| 58 | |
| 59 | .. cmdoption:: -c <command> |
| 60 | |
Georg Brandl | c7b6908 | 2010-10-06 08:08:40 +0000 | [diff] [blame] | 61 | Execute the Python code in *command*. *command* can be one or more |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 62 | statements separated by newlines, with significant leading whitespace as in |
| 63 | normal module code. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 64 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 65 | If this option is given, the first element of :data:`sys.argv` will be |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 66 | ``"-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 Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 69 | |
| 70 | |
| 71 | .. cmdoption:: -m <module-name> |
| 72 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 73 | Search :data:`sys.path` for the named module and execute its contents as |
| 74 | the :mod:`__main__` module. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 75 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 76 | Since the argument is a *module* name, you must not give a file extension |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 77 | (``.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 Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 80 | |
Nick Coghlan | 3f48ae3 | 2009-02-08 01:58:26 +0000 | [diff] [blame] | 81 | Package names are also permitted. When a package name is supplied instead |
| 82 | of a normal module, the interpreter will execute ``<pkg>.__main__`` as |
| 83 | the main module. This behaviour is deliberately similar to the handling |
| 84 | of directories and zipfiles that are passed to the interpreter as the |
| 85 | script argument. |
| 86 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 87 | .. note:: |
| 88 | |
Georg Brandl | c5605df | 2009-08-13 08:26:44 +0000 | [diff] [blame] | 89 | This option cannot be used with built-in modules and extension modules |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 90 | written in C, since they do not have Python module files. However, it |
| 91 | can still be used for precompiled modules, even if the original source |
| 92 | file is not available. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 93 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 94 | If this option is given, the first element of :data:`sys.argv` will be the |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 95 | full path to the module file. As with the :option:`-c` option, the current |
| 96 | directory will be added to the start of :data:`sys.path`. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 97 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 98 | Many standard library modules contain code that is invoked on their execution |
| 99 | as a script. An example is the :mod:`timeit` module:: |
| 100 | |
| 101 | python -mtimeit -s 'setup here' 'benchmarked code here' |
| 102 | python -mtimeit -h # for details |
| 103 | |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 104 | .. seealso:: |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 105 | :func:`runpy.run_module` |
Nick Coghlan | 3f48ae3 | 2009-02-08 01:58:26 +0000 | [diff] [blame] | 106 | Equivalent functionality directly available to Python code |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 107 | |
| 108 | :pep:`338` -- Executing modules as scripts |
| 109 | |
| 110 | |
Nick Coghlan | 3f48ae3 | 2009-02-08 01:58:26 +0000 | [diff] [blame] | 111 | .. versionchanged:: 3.1 |
| 112 | Supply the package name to run a ``__main__`` submodule. |
| 113 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 114 | .. describe:: - |
| 115 | |
| 116 | Read commands from standard input (:data:`sys.stdin`). If standard input is |
| 117 | a terminal, :option:`-i` is implied. |
| 118 | |
| 119 | If this option is given, the first element of :data:`sys.argv` will be |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 120 | ``"-"`` and the current directory will be added to the start of |
| 121 | :data:`sys.path`. |
| 122 | |
| 123 | |
| 124 | .. describe:: <script> |
| 125 | |
| 126 | Execute the Python code contained in *script*, which must be a filesystem |
| 127 | path (absolute or relative) referring to either a Python file, a directory |
| 128 | containing a ``__main__.py`` file, or a zipfile containing a |
| 129 | ``__main__.py`` file. |
| 130 | |
| 131 | If this option is given, the first element of :data:`sys.argv` will be the |
| 132 | script name as given on the command line. |
| 133 | |
| 134 | If the script name refers directly to a Python file, the directory |
| 135 | containing that file is added to the start of :data:`sys.path`, and the |
| 136 | file is executed as the :mod:`__main__` module. |
| 137 | |
| 138 | If the script name refers to a directory or zipfile, the script name is |
| 139 | added to the start of :data:`sys.path` and the ``__main__.py`` file in |
| 140 | that location is executed as the :mod:`__main__` module. |
| 141 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 142 | |
| 143 | If no interface option is given, :option:`-i` is implied, ``sys.argv[0]`` is |
| 144 | an empty string (``""``) and the current directory will be added to the |
| 145 | start of :data:`sys.path`. |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 146 | |
Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 147 | .. seealso:: :ref:`tut-invoking` |
| 148 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 149 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 150 | Generic options |
| 151 | ~~~~~~~~~~~~~~~ |
| 152 | |
| 153 | .. cmdoption:: -? |
| 154 | -h |
| 155 | --help |
| 156 | |
| 157 | Print a short description of all command line options. |
| 158 | |
| 159 | |
| 160 | .. cmdoption:: -V |
| 161 | --version |
| 162 | |
| 163 | Print the Python version number and exit. Example output could be:: |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 164 | |
Georg Brandl | e6bcc91 | 2008-05-12 18:05:20 +0000 | [diff] [blame] | 165 | Python 3.0 |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 166 | |
| 167 | |
| 168 | Miscellaneous options |
| 169 | ~~~~~~~~~~~~~~~~~~~~~ |
| 170 | |
Christian Heimes | 226679a | 2007-12-07 11:52:55 +0000 | [diff] [blame] | 171 | .. cmdoption:: -b |
| 172 | |
| 173 | Issue a warning when comparing str and bytes. Issue an error when the |
| 174 | option is given twice (:option:`-bb`). |
| 175 | |
| 176 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 177 | .. cmdoption:: -B |
| 178 | |
| 179 | If given, Python won't try to write ``.pyc`` or ``.pyo`` files on the |
| 180 | import of source modules. See also :envvar:`PYTHONDONTWRITEBYTECODE`. |
| 181 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 182 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 183 | .. cmdoption:: -d |
| 184 | |
| 185 | Turn on parser debugging output (for wizards only, depending on compilation |
| 186 | options). See also :envvar:`PYTHONDEBUG`. |
| 187 | |
| 188 | |
| 189 | .. cmdoption:: -E |
| 190 | |
| 191 | Ignore all :envvar:`PYTHON*` environment variables, e.g. |
| 192 | :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set. |
| 193 | |
| 194 | |
| 195 | .. cmdoption:: -i |
| 196 | |
| 197 | When a script is passed as first argument or the :option:`-c` option is used, |
| 198 | enter interactive mode after executing the script or the command, even when |
| 199 | :data:`sys.stdin` does not appear to be a terminal. The |
| 200 | :envvar:`PYTHONSTARTUP` file is not read. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 201 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 202 | This can be useful to inspect global variables or a stack trace when a script |
| 203 | raises an exception. See also :envvar:`PYTHONINSPECT`. |
| 204 | |
| 205 | |
| 206 | .. cmdoption:: -O |
| 207 | |
| 208 | Turn on basic optimizations. This changes the filename extension for |
| 209 | compiled (:term:`bytecode`) files from ``.pyc`` to ``.pyo``. See also |
| 210 | :envvar:`PYTHONOPTIMIZE`. |
| 211 | |
| 212 | |
| 213 | .. cmdoption:: -OO |
| 214 | |
| 215 | Discard docstrings in addition to the :option:`-O` optimizations. |
| 216 | |
| 217 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 218 | .. cmdoption:: -s |
| 219 | |
| 220 | Don't add user site directory to sys.path |
| 221 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 222 | .. seealso:: |
| 223 | |
| 224 | :pep:`370` -- Per user site-packages directory |
| 225 | |
| 226 | |
| 227 | .. cmdoption:: -S |
| 228 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 229 | Disable the import of the module :mod:`site` and the site-dependent |
| 230 | manipulations of :data:`sys.path` that it entails. |
| 231 | |
| 232 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 233 | .. cmdoption:: -u |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 234 | |
Georg Brandl | 16215c7 | 2010-10-06 07:59:52 +0000 | [diff] [blame] | 235 | Force the binary layer of the stdin, stdout and stderr streams (which is |
| 236 | available as their ``buffer`` attribute) to be unbuffered. The text I/O |
| 237 | layer will still be line-buffered. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 238 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 239 | See also :envvar:`PYTHONUNBUFFERED`. |
| 240 | |
| 241 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 242 | .. cmdoption:: -v |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 243 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 244 | Print a message each time a module is initialized, showing the place |
| 245 | (filename or built-in module) from which it is loaded. When given twice |
| 246 | (:option:`-vv`), print a message for each file that is checked for when |
| 247 | searching for a module. Also provides information on module cleanup at exit. |
| 248 | See also :envvar:`PYTHONVERBOSE`. |
| 249 | |
| 250 | |
| 251 | .. cmdoption:: -W arg |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 252 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 253 | Warning control. Python's warning machinery by default prints warning |
| 254 | messages to :data:`sys.stderr`. A typical warning message has the following |
| 255 | form:: |
| 256 | |
| 257 | file:line: category: message |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 258 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 259 | By default, each warning is printed once for each source line where it |
| 260 | occurs. This option controls how often warnings are printed. |
| 261 | |
| 262 | Multiple :option:`-W` options may be given; when a warning matches more than |
| 263 | one option, the action for the last matching option is performed. Invalid |
| 264 | :option:`-W` options are ignored (though, a warning message is printed about |
| 265 | invalid options when the first warning is issued). |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 266 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 267 | Warnings can also be controlled from within a Python program using the |
| 268 | :mod:`warnings` module. |
| 269 | |
| 270 | The simplest form of argument is one of the following action strings (or a |
| 271 | unique abbreviation): |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 272 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 273 | ``ignore`` |
| 274 | Ignore all warnings. |
| 275 | ``default`` |
| 276 | Explicitly request the default behavior (printing each warning once per |
| 277 | source line). |
| 278 | ``all`` |
| 279 | Print a warning each time it occurs (this may generate many messages if a |
| 280 | warning is triggered repeatedly for the same source line, such as inside a |
| 281 | loop). |
| 282 | ``module`` |
Georg Brandl | eeb575f | 2009-06-24 06:42:05 +0000 | [diff] [blame] | 283 | Print each warning only the first time it occurs in each module. |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 284 | ``once`` |
| 285 | Print each warning only the first time it occurs in the program. |
| 286 | ``error`` |
| 287 | Raise an exception instead of printing a warning message. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 288 | |
| 289 | The full form of argument is:: |
| 290 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 291 | action:message:category:module:line |
| 292 | |
| 293 | Here, *action* is as explained above but only applies to messages that match |
| 294 | the remaining fields. Empty fields match all values; trailing empty fields |
| 295 | may be omitted. The *message* field matches the start of the warning message |
| 296 | printed; this match is case-insensitive. The *category* field matches the |
| 297 | warning category. This must be a class name; the match test whether the |
| 298 | actual warning category of the message is a subclass of the specified warning |
| 299 | category. The full class name must be given. The *module* field matches the |
| 300 | (fully-qualified) module name; this match is case-sensitive. The *line* |
| 301 | field matches the line number, where zero matches all line numbers and is |
| 302 | thus equivalent to an omitted line number. |
| 303 | |
| 304 | .. seealso:: |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 305 | :mod:`warnings` -- the warnings module |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 306 | |
| 307 | :pep:`230` -- Warning framework |
| 308 | |
| 309 | |
| 310 | .. cmdoption:: -x |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 311 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 312 | Skip the first line of the source, allowing use of non-Unix forms of |
| 313 | ``#!cmd``. This is intended for a DOS specific hack only. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 314 | |
Georg Brandl | 3221dc9 | 2009-04-27 16:23:47 +0000 | [diff] [blame] | 315 | .. note:: The line numbers in error messages will be off by one. |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 316 | |
Barry Warsaw | a1bd445 | 2010-02-05 19:21:12 +0000 | [diff] [blame] | 317 | Options you shouldn't use |
| 318 | ~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 319 | |
| 320 | .. cmdoption:: -J |
| 321 | |
| 322 | Reserved for use by Jython_. |
| 323 | |
| 324 | .. _Jython: http://jython.org |
| 325 | |
| 326 | .. cmdoption:: -X |
| 327 | |
| 328 | Reserved for alternative implementations of Python to use for their own |
| 329 | purposes. |
| 330 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 331 | .. _using-on-envvars: |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 332 | |
| 333 | Environment variables |
| 334 | --------------------- |
| 335 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 336 | These environment variables influence Python's behavior. |
| 337 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 338 | .. envvar:: PYTHONHOME |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 339 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 340 | Change the location of the standard Python libraries. By default, the |
Christian Heimes | e1c9811 | 2008-01-21 11:20:28 +0000 | [diff] [blame] | 341 | libraries are searched in :file:`{prefix}/lib/python{version}` and |
| 342 | :file:`{exec_prefix}/lib/python{version}`, where :file:`{prefix}` and |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 343 | :file:`{exec_prefix}` are installation-dependent directories, both defaulting |
| 344 | to :file:`/usr/local`. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 345 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 346 | When :envvar:`PYTHONHOME` is set to a single directory, its value replaces |
| 347 | both :file:`{prefix}` and :file:`{exec_prefix}`. To specify different values |
Christian Heimes | e1c9811 | 2008-01-21 11:20:28 +0000 | [diff] [blame] | 348 | for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}`. |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 349 | |
| 350 | |
| 351 | .. envvar:: PYTHONPATH |
| 352 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 353 | Augment the default search path for module files. The format is the same as |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 354 | the shell's :envvar:`PATH`: one or more directory pathnames separated by |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 355 | :data:`os.pathsep` (e.g. colons on Unix or semicolons on Windows). |
| 356 | Non-existent directories are silently ignored. |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 357 | |
| 358 | In addition to normal directories, individual :envvar:`PYTHONPATH` entries |
| 359 | may refer to zipfiles containing pure Python modules (in either source or |
| 360 | compiled form). Extension modules cannot be imported from zipfiles. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 361 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 362 | The default search path is installation dependent, but generally begins with |
Georg Brandl | 1f01deb | 2009-01-03 22:47:39 +0000 | [diff] [blame] | 363 | :file:`{prefix}/lib/python{version}` (see :envvar:`PYTHONHOME` above). It |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 364 | is *always* appended to :envvar:`PYTHONPATH`. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 365 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 366 | An additional directory will be inserted in the search path in front of |
| 367 | :envvar:`PYTHONPATH` as described above under |
| 368 | :ref:`using-on-interface-options`. The search path can be manipulated from |
| 369 | within a Python program as the variable :data:`sys.path`. |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 370 | |
| 371 | |
| 372 | .. envvar:: PYTHONSTARTUP |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 373 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 374 | If this is the name of a readable file, the Python commands in that file are |
| 375 | executed before the first prompt is displayed in interactive mode. The file |
| 376 | is executed in the same namespace where interactive commands are executed so |
| 377 | that objects defined or imported in it can be used without qualification in |
| 378 | the interactive session. You can also change the prompts :data:`sys.ps1` and |
| 379 | :data:`sys.ps2` in this file. |
| 380 | |
| 381 | |
| 382 | .. envvar:: PYTHONY2K |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 383 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 384 | Set this to a non-empty string to cause the :mod:`time` module to require |
| 385 | dates specified as strings to include 4-digit years, otherwise 2-digit years |
| 386 | are converted based on rules described in the :mod:`time` module |
| 387 | documentation. |
| 388 | |
| 389 | |
| 390 | .. envvar:: PYTHONOPTIMIZE |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 391 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 392 | If this is set to a non-empty string it is equivalent to specifying the |
| 393 | :option:`-O` option. If set to an integer, it is equivalent to specifying |
| 394 | :option:`-O` multiple times. |
| 395 | |
| 396 | |
| 397 | .. envvar:: PYTHONDEBUG |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 398 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 399 | If this is set to a non-empty string it is equivalent to specifying the |
| 400 | :option:`-d` option. If set to an integer, it is equivalent to specifying |
| 401 | :option:`-d` multiple times. |
| 402 | |
| 403 | |
| 404 | .. envvar:: PYTHONINSPECT |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 405 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 406 | If this is set to a non-empty string it is equivalent to specifying the |
| 407 | :option:`-i` option. |
| 408 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 409 | This variable can also be modified by Python code using :data:`os.environ` |
| 410 | to force inspect mode on program termination. |
| 411 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 412 | |
| 413 | .. envvar:: PYTHONUNBUFFERED |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 414 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 415 | If this is set to a non-empty string it is equivalent to specifying the |
| 416 | :option:`-u` option. |
| 417 | |
| 418 | |
| 419 | .. envvar:: PYTHONVERBOSE |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 420 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 421 | If this is set to a non-empty string it is equivalent to specifying the |
| 422 | :option:`-v` option. If set to an integer, it is equivalent to specifying |
| 423 | :option:`-v` multiple times. |
| 424 | |
| 425 | |
| 426 | .. envvar:: PYTHONCASEOK |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 427 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 428 | If this is set, Python ignores case in :keyword:`import` statements. This |
| 429 | only works on Windows. |
| 430 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 431 | |
| 432 | .. envvar:: PYTHONDONTWRITEBYTECODE |
| 433 | |
| 434 | If this is set, Python won't try to write ``.pyc`` or ``.pyo`` files on the |
| 435 | import of source modules. |
| 436 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 437 | |
Georg Brandl | 2c906f1 | 2008-06-11 18:03:09 +0000 | [diff] [blame] | 438 | .. envvar:: PYTHONIOENCODING |
| 439 | |
| 440 | Overrides the encoding used for stdin/stdout/stderr, in the syntax |
| 441 | ``encodingname:errorhandler``. The ``:errorhandler`` part is optional and |
| 442 | has the same meaning as in :func:`str.encode`. |
| 443 | |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 444 | For stderr, the ``:errorhandler`` part is ignored; the handler will always be |
| 445 | ``'backslashreplace'``. |
| 446 | |
Georg Brandl | 2c906f1 | 2008-06-11 18:03:09 +0000 | [diff] [blame] | 447 | |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 448 | .. envvar:: PYTHONNOUSERSITE |
| 449 | |
| 450 | If this is set, Python won't add the user site directory to sys.path |
| 451 | |
| 452 | .. seealso:: |
| 453 | |
| 454 | :pep:`370` -- Per user site-packages directory |
| 455 | |
| 456 | |
| 457 | .. envvar:: PYTHONUSERBASE |
| 458 | |
| 459 | Sets the base directory for the user site directory |
| 460 | |
| 461 | .. seealso:: |
| 462 | |
| 463 | :pep:`370` -- Per user site-packages directory |
| 464 | |
| 465 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 466 | .. envvar:: PYTHONEXECUTABLE |
| 467 | |
| 468 | If this environment variable is set, ``sys.argv[0]`` will be set to its |
| 469 | value instead of the value got through the C runtime. Only works on |
Georg Brandl | c575c90 | 2008-09-13 17:46:05 +0000 | [diff] [blame] | 470 | Mac OS X. |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 471 | |
| 472 | |
| 473 | Debug-mode variables |
| 474 | ~~~~~~~~~~~~~~~~~~~~ |
| 475 | |
| 476 | Setting these variables only has an effect in a debug build of Python, that is, |
| 477 | if Python was configured with the :option:`--with-pydebug` build option. |
| 478 | |
| 479 | .. envvar:: PYTHONTHREADDEBUG |
| 480 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 481 | If set, Python will print threading debug info. |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 482 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 483 | |
| 484 | .. envvar:: PYTHONDUMPREFS |
| 485 | |
| 486 | If set, Python will dump objects and reference counts still alive after |
| 487 | shutting down the interpreter. |
| 488 | |
| 489 | |
| 490 | .. envvar:: PYTHONMALLOCSTATS |
| 491 | |
| 492 | If set, Python will print memory allocation statistics every time a new |
| 493 | object arena is created, and on shutdown. |
| 494 | |