2007-08-15 11:28:22 -03:00
|
|
|
:mod:`site` --- Site-specific configuration hook
|
|
|
|
================================================
|
|
|
|
|
|
|
|
.. module:: site
|
2011-08-05 20:51:07 -03:00
|
|
|
:synopsis: Module responsible for site-specific configuration.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2011-01-27 16:38:46 -04:00
|
|
|
**Source code:** :source:`Lib/site.py`
|
|
|
|
|
|
|
|
--------------
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
.. highlightlang:: none
|
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
**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
|
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
Importing this module will append site-specific paths to the module search path
|
2011-08-06 11:58:15 -03:00
|
|
|
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.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2011-04-23 22:15:32 -03:00
|
|
|
.. versionchanged:: 3.3
|
|
|
|
Importing the module used to trigger paths manipulation even when using
|
|
|
|
:option:`-S`.
|
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
.. index::
|
|
|
|
pair: site-python; directory
|
|
|
|
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
|
2012-09-17 03:59:36 -03:00
|
|
|
:file:`lib/python{X.Y}/site-packages` and then :file:`lib/site-python` (on
|
2007-08-15 11:28:22 -03:00
|
|
|
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.
|
|
|
|
|
2013-10-25 16:39:26 -03:00
|
|
|
.. deprecated:: 3.4
|
|
|
|
Support for the "site-python" directory will be removed in 3.5.
|
|
|
|
|
2012-07-03 12:33:57 -03:00
|
|
|
If a file named "pyvenv.cfg" exists one directory above sys.executable,
|
|
|
|
sys.prefix and sys.exec_prefix are set to that directory and
|
|
|
|
it is also checked for site-packages and site-python (sys.base_prefix and
|
|
|
|
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.
|
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
A path configuration file is a file whose name has the form :file:`{name}.pth`
|
2007-08-15 11:28:22 -03:00
|
|
|
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
|
2011-08-05 20:51:07 -03:00
|
|
|
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
|
2007-08-15 11:28:22 -03:00
|
|
|
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
|
2011-08-05 20:51:07 -03:00
|
|
|
:file:`/usr/local/lib/python{X.Y}`. Suppose this has
|
2007-08-15 11:28:22 -03:00
|
|
|
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
|
|
|
|
|
Devil merge!
Merged revisions 66561,66564,66580,66610,66614,66618,66624-66625,66628-66629,66643,66645,66660-66665 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r66561 | benjamin.peterson | 2008-09-22 17:13:29 -0500 (Mon, 22 Sep 2008) | 1 line
clean up docs for platform's linux_distribution and dist functions
........
r66564 | benjamin.peterson | 2008-09-23 08:32:46 -0500 (Tue, 23 Sep 2008) | 1 line
mention how to override boolean evaluation
........
r66580 | georg.brandl | 2008-09-24 04:47:55 -0500 (Wed, 24 Sep 2008) | 2 lines
Indentation normalization.
........
r66610 | andrew.kuchling | 2008-09-24 12:27:55 -0500 (Wed, 24 Sep 2008) | 1 line
Improve wording
........
r66614 | benjamin.peterson | 2008-09-24 17:11:59 -0500 (Wed, 24 Sep 2008) | 4 lines
#3950 fix missing scale factors in turtle.py
reviewers: Georg, Benjamin
........
r66618 | benjamin.peterson | 2008-09-25 15:35:45 -0500 (Thu, 25 Sep 2008) | 1 line
add a NEWs entry for r66614
........
r66624 | raymond.hettinger | 2008-09-25 18:31:52 -0500 (Thu, 25 Sep 2008) | 1 line
Fix namedtuple bug reported by Glenn Linderman. Template did not form correctly if the field names were input in Unicode.
........
r66625 | benjamin.peterson | 2008-09-25 21:58:36 -0500 (Thu, 25 Sep 2008) | 1 line
add the beginnings of a C-API 2 -> 3 porting guide
........
r66628 | benjamin.peterson | 2008-09-26 15:52:06 -0500 (Fri, 26 Sep 2008) | 1 line
add an 'other options' section
........
r66629 | georg.brandl | 2008-09-26 16:15:21 -0500 (Fri, 26 Sep 2008) | 2 lines
typos.
........
r66643 | andrew.kuchling | 2008-09-27 09:12:33 -0500 (Sat, 27 Sep 2008) | 1 line
Add a last bunch of items
........
r66645 | benjamin.peterson | 2008-09-27 11:23:55 -0500 (Sat, 27 Sep 2008) | 1 line
2to3's api should be considered unstable
........
r66660 | andrew.kuchling | 2008-09-27 17:54:08 -0500 (Sat, 27 Sep 2008) | 1 line
#3510: future-proof text
........
r66661 | benjamin.peterson | 2008-09-27 18:28:43 -0500 (Sat, 27 Sep 2008) | 1 line
clarify a few things
........
r66662 | andrew.kuchling | 2008-09-27 19:15:27 -0500 (Sat, 27 Sep 2008) | 1 line
#1579477: mention necessity to flush output before exec'ing
........
r66663 | andrew.kuchling | 2008-09-27 20:08:47 -0500 (Sat, 27 Sep 2008) | 1 line
#1415508: Document two functions
........
r66664 | benjamin.peterson | 2008-09-27 20:51:36 -0500 (Sat, 27 Sep 2008) | 1 line
better grammar
........
r66665 | benjamin.peterson | 2008-09-27 20:53:29 -0500 (Sat, 27 Sep 2008) | 1 line
note the 2to3 -d could be useful for other refactoring
........
2008-09-27 23:06:32 -03:00
|
|
|
Then the following version-specific directories are added to
|
|
|
|
``sys.path``, in this order::
|
2007-08-15 11:28:22 -03:00
|
|
|
|
Devil merge!
Merged revisions 66561,66564,66580,66610,66614,66618,66624-66625,66628-66629,66643,66645,66660-66665 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r66561 | benjamin.peterson | 2008-09-22 17:13:29 -0500 (Mon, 22 Sep 2008) | 1 line
clean up docs for platform's linux_distribution and dist functions
........
r66564 | benjamin.peterson | 2008-09-23 08:32:46 -0500 (Tue, 23 Sep 2008) | 1 line
mention how to override boolean evaluation
........
r66580 | georg.brandl | 2008-09-24 04:47:55 -0500 (Wed, 24 Sep 2008) | 2 lines
Indentation normalization.
........
r66610 | andrew.kuchling | 2008-09-24 12:27:55 -0500 (Wed, 24 Sep 2008) | 1 line
Improve wording
........
r66614 | benjamin.peterson | 2008-09-24 17:11:59 -0500 (Wed, 24 Sep 2008) | 4 lines
#3950 fix missing scale factors in turtle.py
reviewers: Georg, Benjamin
........
r66618 | benjamin.peterson | 2008-09-25 15:35:45 -0500 (Thu, 25 Sep 2008) | 1 line
add a NEWs entry for r66614
........
r66624 | raymond.hettinger | 2008-09-25 18:31:52 -0500 (Thu, 25 Sep 2008) | 1 line
Fix namedtuple bug reported by Glenn Linderman. Template did not form correctly if the field names were input in Unicode.
........
r66625 | benjamin.peterson | 2008-09-25 21:58:36 -0500 (Thu, 25 Sep 2008) | 1 line
add the beginnings of a C-API 2 -> 3 porting guide
........
r66628 | benjamin.peterson | 2008-09-26 15:52:06 -0500 (Fri, 26 Sep 2008) | 1 line
add an 'other options' section
........
r66629 | georg.brandl | 2008-09-26 16:15:21 -0500 (Fri, 26 Sep 2008) | 2 lines
typos.
........
r66643 | andrew.kuchling | 2008-09-27 09:12:33 -0500 (Sat, 27 Sep 2008) | 1 line
Add a last bunch of items
........
r66645 | benjamin.peterson | 2008-09-27 11:23:55 -0500 (Sat, 27 Sep 2008) | 1 line
2to3's api should be considered unstable
........
r66660 | andrew.kuchling | 2008-09-27 17:54:08 -0500 (Sat, 27 Sep 2008) | 1 line
#3510: future-proof text
........
r66661 | benjamin.peterson | 2008-09-27 18:28:43 -0500 (Sat, 27 Sep 2008) | 1 line
clarify a few things
........
r66662 | andrew.kuchling | 2008-09-27 19:15:27 -0500 (Sat, 27 Sep 2008) | 1 line
#1579477: mention necessity to flush output before exec'ing
........
r66663 | andrew.kuchling | 2008-09-27 20:08:47 -0500 (Sat, 27 Sep 2008) | 1 line
#1415508: Document two functions
........
r66664 | benjamin.peterson | 2008-09-27 20:51:36 -0500 (Sat, 27 Sep 2008) | 1 line
better grammar
........
r66665 | benjamin.peterson | 2008-09-27 20:53:29 -0500 (Sat, 27 Sep 2008) | 1 line
note the 2to3 -d could be useful for other refactoring
........
2008-09-27 23:06:32 -03:00
|
|
|
/usr/local/lib/pythonX.Y/site-packages/bar
|
|
|
|
/usr/local/lib/pythonX.Y/site-packages/foo
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
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.
|
2011-08-05 20:51:07 -03:00
|
|
|
It is typically created by a system administrator in the site-packages
|
|
|
|
directory. If this import fails with an :exc:`ImportError` exception, it is
|
|
|
|
silently ignored.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
.. 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
|
|
|
|
disabled by :option:`-s`. An :exc:`ImportError` will be silently ignored.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
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
|
2011-08-05 20:51:07 -03:00
|
|
|
:mod:`sitecustomize` and :mod:`usercustomize` is still attempted.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-05-06 20:45:46 -03:00
|
|
|
|
2013-05-04 15:08:35 -03:00
|
|
|
.. _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
|
2014-03-09 13:03:30 -03:00
|
|
|
: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.
|
2013-05-04 15:08:35 -03:00
|
|
|
|
|
|
|
|
|
|
|
Module contents
|
|
|
|
---------------
|
|
|
|
|
2008-05-06 20:45:46 -03:00
|
|
|
.. data:: PREFIXES
|
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
A list of prefixes for site-packages directories.
|
2008-05-06 20:45:46 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. data:: ENABLE_USER_SITE
|
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
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.
|
2008-05-06 20:45:46 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. data:: USER_SITE
|
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
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.
|
2008-05-06 20:45:46 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. data:: USER_BASE
|
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
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
|
2012-06-24 01:07:41 -03:00
|
|
|
:file:`{%APPDATA%}\\Python` for Windows. This value is used by Distutils to
|
2011-08-05 20:51:07 -03:00
|
|
|
compute the installation directories for scripts, data files, Python modules,
|
2012-06-24 01:07:41 -03:00
|
|
|
etc. for the :ref:`user installation scheme <inst-alt-install-user>`.
|
2011-08-06 11:58:15 -03:00
|
|
|
See also :envvar:`PYTHONUSERBASE`.
|
2008-05-06 20:45:46 -03:00
|
|
|
|
|
|
|
|
2011-03-22 22:06:24 -03:00
|
|
|
.. function:: main()
|
|
|
|
|
|
|
|
Adds all the standard site-specific directories to the module search
|
|
|
|
path. This function is called automatically when this module is imported,
|
2013-05-04 15:08:35 -03:00
|
|
|
unless the Python interpreter was started with the :option:`-S` flag.
|
2011-03-22 22:06:24 -03:00
|
|
|
|
2011-05-06 13:50:08 -03:00
|
|
|
.. versionchanged:: 3.3
|
|
|
|
This function used to be called unconditionnally.
|
|
|
|
|
|
|
|
|
2008-05-06 20:45:46 -03:00
|
|
|
.. function:: addsitedir(sitedir, known_paths=None)
|
|
|
|
|
2011-08-06 11:30:42 -03:00
|
|
|
Add a directory to sys.path and process its :file:`.pth` files. Typically
|
|
|
|
used in :mod:`sitecustomize` or :mod:`usercustomize` (see above).
|
2008-05-06 20:45:46 -03:00
|
|
|
|
|
|
|
|
2009-08-20 18:28:05 -03:00
|
|
|
.. function:: getsitepackages()
|
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
Return a list containing all global site-packages directories (and possibly
|
|
|
|
site-python).
|
2009-08-20 18:28:05 -03:00
|
|
|
|
2009-10-01 17:20:09 -03:00
|
|
|
.. versionadded:: 3.2
|
2009-08-20 18:28:05 -03:00
|
|
|
|
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
.. function:: getuserbase()
|
2009-08-20 18:28:05 -03:00
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
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`.
|
2009-08-20 18:28:05 -03:00
|
|
|
|
2009-10-01 17:20:09 -03:00
|
|
|
.. versionadded:: 3.2
|
2009-08-20 18:28:05 -03:00
|
|
|
|
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
.. function:: getusersitepackages()
|
2009-08-20 18:28:05 -03:00
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
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`.
|
2009-08-20 18:28:05 -03:00
|
|
|
|
2009-10-01 17:20:09 -03:00
|
|
|
.. versionadded:: 3.2
|
2008-05-06 20:45:46 -03:00
|
|
|
|
2009-08-20 18:28:05 -03:00
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
The :mod:`site` module also provides a way to get the user directories from the
|
|
|
|
command line:
|
2009-08-20 18:28:05 -03:00
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
.. code-block:: sh
|
2009-08-20 18:28:05 -03:00
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
$ 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`.
|
|
|
|
|
|
|
|
If any option is given, the script will exit with one of these values: ``O`` if
|
|
|
|
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.
|
2008-05-06 20:45:46 -03:00
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
.. seealso::
|
2009-08-20 18:28:05 -03:00
|
|
|
|
2011-08-05 20:51:07 -03:00
|
|
|
:pep:`370` -- Per user site-packages directory
|