site.rst 9.59 KB
Newer Older
1 2 3 4
:mod:`site` --- Site-specific configuration hook
================================================

.. module:: site
5
   :synopsis: Module responsible for site-specific configuration.
6

Raymond Hettinger's avatar
Raymond Hettinger committed
7 8 9
**Source code:** :source:`Lib/site.py`

--------------
10

11 12
.. highlightlang:: none

13 14 15 16 17
**This module is automatically imported during initialization.** The automatic
import can be suppressed using the interpreter's :option:`-S` option.

.. index:: triple: module; search; path

18
Importing this module will append site-specific paths to the module search path
19 20 21 22
and add a few builtins, unless :option:`-S` was used.  In that case, this module
can be safely imported with no automatic modifications to the module search path
or additions to the builtins.  To explicitly trigger the usual site-specific
additions, call the :func:`site.main` function.
23

24 25 26 27
.. versionchanged:: 3.3
   Importing the module used to trigger paths manipulation even when using
   :option:`-S`.

28 29 30 31 32 33 34
.. index::
   pair: site-packages; directory

It starts by constructing up to four directories from a head and a tail part.
For the head part, it uses ``sys.prefix`` and ``sys.exec_prefix``; empty heads
are skipped.  For the tail part, it uses the empty string and then
:file:`lib/site-packages` (on Windows) or
35 36 37 38
:file:`lib/python{X.Y}/site-packages` (on Unix and Macintosh).  For each
of the distinct head-tail combinations, it sees if it refers to an existing
directory, and if so, adds it to ``sys.path`` and also inspects the newly
added path for configuration files.
39

40 41
.. versionchanged:: 3.5
   Support for the "site-python" directory has been removed.
42

43 44
If a file named "pyvenv.cfg" exists one directory above sys.executable,
sys.prefix and sys.exec_prefix are set to that directory and
45
it is also checked for site-packages (sys.base_prefix and
46 47 48 49 50 51
sys.base_exec_prefix will always be the "real" prefixes of the Python
installation). If "pyvenv.cfg" (a bootstrap configuration file) contains
the key "include-system-site-packages" set to anything other than "false"
(case-insensitive), the system-level prefixes will still also be
searched for site-packages; otherwise they won't.

52
A path configuration file is a file whose name has the form :file:`{name}.pth`
53 54
and exists in one of the four directories mentioned above; its contents are
additional items (one per line) to be added to ``sys.path``.  Non-existing items
55 56
are never added to ``sys.path``, and no check is made that the item refers to a
directory rather than a file.  No item is added to ``sys.path`` more than
57 58 59 60 61 62 63 64 65
once.  Blank lines and lines beginning with ``#`` are skipped.  Lines starting
with ``import`` (followed by space or tab) are executed.

.. index::
   single: package
   triple: path; configuration; file

For example, suppose ``sys.prefix`` and ``sys.exec_prefix`` are set to
:file:`/usr/local`.  The Python X.Y library is then installed in
66
:file:`/usr/local/lib/python{X.Y}`.  Suppose this has
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
a subdirectory :file:`/usr/local/lib/python{X.Y}/site-packages` with three
subsubdirectories, :file:`foo`, :file:`bar` and :file:`spam`, and two path
configuration files, :file:`foo.pth` and :file:`bar.pth`.  Assume
:file:`foo.pth` contains the following::

   # foo package configuration

   foo
   bar
   bletch

and :file:`bar.pth` contains::

   # bar package configuration

   bar

Benjamin Peterson's avatar
Benjamin Peterson committed
84 85
Then the following version-specific directories are added to
``sys.path``, in this order::
86

Benjamin Peterson's avatar
Benjamin Peterson committed
87 88
   /usr/local/lib/pythonX.Y/site-packages/bar
   /usr/local/lib/pythonX.Y/site-packages/foo
89 90 91 92 93 94 95 96 97 98

Note that :file:`bletch` is omitted because it doesn't exist; the :file:`bar`
directory precedes the :file:`foo` directory because :file:`bar.pth` comes
alphabetically before :file:`foo.pth`; and :file:`spam` is omitted because it is
not mentioned in either path configuration file.

.. index:: module: sitecustomize

After these path manipulations, an attempt is made to import a module named
:mod:`sitecustomize`, which can perform arbitrary site-specific customizations.
99
It is typically created by a system administrator in the site-packages
100 101 102
directory.  If this import fails with an :exc:`ImportError` or its subclass
exception, and the exception's :attr:`name` attribute equals to ``'sitecustomize'``,
it is silently ignored.  If Python is started without output streams available, as
103
with :file:`pythonw.exe` on Windows (which is used by default to start IDLE),
104 105
attempted output from :mod:`sitecustomize` is ignored.  Any other exception
causes a silent and perhaps mysterious failure of the process.
106

107 108 109 110 111 112
.. index:: module: usercustomize

After this, an attempt is made to import a module named :mod:`usercustomize`,
which can perform arbitrary user-specific customizations, if
:data:`ENABLE_USER_SITE` is true.  This file is intended to be created in the
user site-packages directory (see below), which is part of ``sys.path`` unless
113 114 115
disabled by :option:`-s`.  If this import fails with an :exc:`ImportError` or
its subclass exception, and the exception's :attr:`name` attribute equals to
``'usercustomize'``, it is silently ignored.
116 117 118

Note that for some non-Unix systems, ``sys.prefix`` and ``sys.exec_prefix`` are
empty, and the path manipulations are skipped; however the import of
119
:mod:`sitecustomize` and :mod:`usercustomize` is still attempted.
120

121

122 123 124 125 126 127 128 129 130
.. _rlcompleter-config:

Readline configuration
----------------------

On systems that support :mod:`readline`, this module will also import and
configure the :mod:`rlcompleter` module, if Python is started in
:ref:`interactive mode <tut-interactive>` and without the :option:`-S` option.
The default behavior is enable tab-completion and to use
131 132 133 134 135 136 137
:file:`~/.python_history` as the history save file.  To disable it, delete (or
override) the :data:`sys.__interactivehook__` attribute in your
:mod:`sitecustomize` or :mod:`usercustomize` module or your
:envvar:`PYTHONSTARTUP` file.

.. versionchanged:: 3.4
   Activation of rlcompleter and history was made automatic.
138 139 140 141 142


Module contents
---------------

143 144
.. data:: PREFIXES

145
   A list of prefixes for site-packages directories.
146 147 148 149


.. data:: ENABLE_USER_SITE

150 151 152 153 154 155
   Flag showing the status of the user site-packages directory.  ``True`` means
   that it is enabled and was added to ``sys.path``.  ``False`` means that it
   was disabled by user request (with :option:`-s` or
   :envvar:`PYTHONNOUSERSITE`).  ``None`` means it was disabled for security
   reasons (mismatch between user or group id and effective id) or by an
   administrator.
156 157 158 159


.. data:: USER_SITE

160 161 162 163 164 165 166
   Path to the user site-packages for the running Python.  Can be ``None`` if
   :func:`getusersitepackages` hasn't been called yet.  Default value is
   :file:`~/.local/lib/python{X.Y}/site-packages` for UNIX and non-framework Mac
   OS X builds, :file:`~/Library/Python/{X.Y}/lib/python/site-packages` for Mac
   framework builds, and :file:`{%APPDATA%}\\Python\\Python{XY}\\site-packages`
   on Windows.  This directory is a site directory, which means that
   :file:`.pth` files in it will be processed.
167 168 169 170


.. data:: USER_BASE

171 172 173 174
   Path to the base directory for the user site-packages.  Can be ``None`` if
   :func:`getuserbase` hasn't been called yet.  Default value is
   :file:`~/.local` for UNIX and Mac OS X non-framework builds,
   :file:`~/Library/Python/{X.Y}` for Mac framework builds, and
175
   :file:`{%APPDATA%}\\Python` for Windows.  This value is used by Distutils to
176
   compute the installation directories for scripts, data files, Python modules,
177
   etc. for the :ref:`user installation scheme <inst-alt-install-user>`.
178
   See also :envvar:`PYTHONUSERBASE`.
179 180


181 182 183 184
.. function:: main()

   Adds all the standard site-specific directories to the module search
   path.  This function is called automatically when this module is imported,
185
   unless the Python interpreter was started with the :option:`-S` flag.
186

187
   .. versionchanged:: 3.3
188
      This function used to be called unconditionally.
189 190


191 192
.. function:: addsitedir(sitedir, known_paths=None)

193 194
   Add a directory to sys.path and process its :file:`.pth` files.  Typically
   used in :mod:`sitecustomize` or :mod:`usercustomize` (see above).
195 196


197 198
.. function:: getsitepackages()

199
   Return a list containing all global site-packages directories.
200

201
   .. versionadded:: 3.2
202 203


204
.. function:: getuserbase()
205

206 207 208
   Return the path of the user base directory, :data:`USER_BASE`.  If it is not
   initialized yet, this function will also set it, respecting
   :envvar:`PYTHONUSERBASE`.
209

210
   .. versionadded:: 3.2
211 212


213
.. function:: getusersitepackages()
214

215 216 217
   Return the path of the user-specific site-packages directory,
   :data:`USER_SITE`.  If it is not initialized yet, this function will also set
   it, respecting :envvar:`PYTHONNOUSERSITE` and :data:`USER_BASE`.
218

219
   .. versionadded:: 3.2
220

221

222 223
The :mod:`site` module also provides a way to get the user directories from the
command line:
224

225
.. code-block:: shell-session
226

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
   $ python3 -m site --user-site
   /home/user/.local/lib/python3.3/site-packages

.. program:: site

If it is called without arguments, it will print the contents of
:data:`sys.path` on the standard output, followed by the value of
:data:`USER_BASE` and whether the directory exists, then the same thing for
:data:`USER_SITE`, and finally the value of :data:`ENABLE_USER_SITE`.

.. cmdoption:: --user-base

   Print the path to the user base directory.

.. cmdoption:: --user-site

   Print the path to the user site-packages directory.

If both options are given, user base and user site will be printed (always in
this order), separated by :data:`os.pathsep`.

248
If any option is given, the script will exit with one of these values: ``0`` if
249 250 251
the user site-packages directory is enabled, ``1`` if it was disabled by the
user, ``2`` if it is disabled for security reasons or by an administrator, and a
value greater than 2 if there is an error.
252

253
.. seealso::
254

255
   :pep:`370` -- Per user site-packages directory