源代码: Lib/site.py
此模块在初始化期间自动导入。 可以抑制自动导入使用解释器的 -S 选项。
Importing this module will append site-specific paths to the module search path and add a few builtins.
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 lib/site-packages (在 Windows) 或 lib/python X.Y /site-packages and then lib/site-python (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.
A path configuration file is a file whose name has the form name .pth 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 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 once. Blank lines and lines beginning with # are skipped. Lines starting with import (followed by space or tab) are executed.
2.6 版改变: A space or tab is now required after the import keyword.
例如,假设 sys.prefix and sys.exec_prefix 被设为 /usr/local 。那么 Python X.Y 库安装在 /usr/local/lib/python X.Y 。假设这拥有子目录 /usr/local/lib/python X.Y /site-packages 带有 3 个子目录, foo , bar and spam ,和 2 个路径配置文件, foo.pth and bar.pth 。假定 foo.pth 包含下列:
# foo package configuration foo bar bletch
and bar.pth 包含:
# bar package configuration bar
Then the following version-specific directories are added to sys.path ,按此次序:
/usr/local/lib/pythonX.Y/site-packages/bar /usr/local/lib/pythonX.Y/site-packages/foo
注意, bletch is omitted because it doesn’t exist; the bar directory precedes the foo directory because bar.pth comes alphabetically before foo.pth ; and spam is omitted because it is not mentioned in either path configuration file.
After these path manipulations, an attempt is made to import a module named sitecustomize , which can perform arbitrary site-specific customizations. It is typically created by a system administrator in the site-packages directory. If this import fails with an ImportError exception, it is silently ignored. If Python is started without output streams available, as with pythonw.exe on Windows (which is used by default to start IDLE), attempted output from sitecustomize is ignored. Any exception other than ImportError causes a silent and perhaps mysterious failure of the process.
After this, an attempt is made to import a module named usercustomize , which can perform arbitrary user-specific customizations, if 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 -s . An ImportError will be silently ignored.
注意,对于某些非 Unix 系统, sys.prefix and sys.exec_prefix are empty, and the path manipulations are skipped; however the import of sitecustomize and usercustomize is still attempted.
站点包目录的前缀列表。
2.6 版新增。
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 -s or PYTHONNOUSERSITE ). None means it was disabled for security reasons (mismatch between user or group id and effective id) or by an administrator.
2.6 版新增。
Path to the user site-packages for the running Python. Can be None if getusersitepackages() hasn’t been called yet. Default value is ~/.local/lib/python X.Y /site-packages for UNIX and non-framework Mac OS X builds, ~/Library/Python/ X.Y /lib/python/site-packages for Mac framework builds, and %APPDATA% \Python\Python XY \site-packages on Windows. This directory is a site directory, which means that .pth files in it will be processed.
2.6 版新增。
Path to the base directory for the user site-packages. Can be None if getuserbase() hasn’t been called yet. Default value is ~/.local for UNIX and Mac OS X non-framework builds, ~/Library/Python/ X.Y for Mac framework builds, and %APPDATA% \Python for Windows. This value is used by Distutils to compute the installation directories for scripts, data files, Python modules, etc. for the 用户安装方案 。另请参阅 PYTHONUSERBASE .
2.6 版新增。
Add a directory to sys.path and process its .pth files. Typically used in sitecustomize or usercustomize (see above).
Return a list containing all global site-packages directories (and possibly site-python).
2.7 版新增。
Return the path of the user base directory, USER_BASE . If it is not initialized yet, this function will also set it, respecting PYTHONUSERBASE .
2.7 版新增。
Return the path of the user-specific site-packages directory, USER_SITE . If it is not initialized yet, this function will also set it, respecting PYTHONNOUSERSITE and USER_BASE .
2.7 版新增。
The site 模块还提供从命令行获取用户目录的方式:
$ python -m site --user-site
/home/user/.local/lib/python2.7/site-packages
If it is called without arguments, it will print the contents of sys.path on the standard output, followed by the value of USER_BASE and whether the directory exists, then the same thing for USER_SITE , and finally the value of ENABLE_USER_SITE .
将路径打印到用户基目录。
将路径打印到用户站点包目录。
If both options are given, user base and user site will be printed (always in this order), separated by 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.
另请参阅
PEP 370 – 每用户站点包目录