blob: 4ef8cb8455cfa572f190b46f5b637a70a7bd459a [file] [log] [blame]
Guido van Rossumf30bec71997-08-29 22:30:45 +00001"""Append module search paths for third-party packages to sys.path.
Guido van Rossume57c96e1996-08-17 19:56:26 +00002
Guido van Rossumf30bec71997-08-29 22:30:45 +00003****************************************************************
4* This module is automatically imported during initialization. *
5****************************************************************
Guido van Rossume57c96e1996-08-17 19:56:26 +00006
Guido van Rossumf30bec71997-08-29 22:30:45 +00007In earlier versions of Python (up to 1.5a3), scripts or modules that
8needed to use site-specific modules would place ``import site''
9somewhere near the top of their code. Because of the automatic
10import, this is no longer necessary (but code that does it still
11works).
Guido van Rossume57c96e1996-08-17 19:56:26 +000012
Guido van Rossum0d8fcb21998-01-13 18:32:40 +000013This will append site-specific paths to to the module search path. On
14Unix, it starts with sys.prefix and sys.exec_prefix (if different) and
15appends lib/python<version>/site-packages as well as lib/site-python.
16On other platforms (mainly Mac and Windows), it uses just sys.prefix
17(and sys.exec_prefix, if different, but this is unlikely). The
Guido van Rossum62b297b1997-09-08 02:14:09 +000018resulting directories, if they exist, are appended to sys.path, and
19also inspected for path configuration files.
Guido van Rossume57c96e1996-08-17 19:56:26 +000020
Guido van Rossumf30bec71997-08-29 22:30:45 +000021A path configuration file is a file whose name has the form
22<package>.pth; its contents are additional directories (one per line)
23to be added to sys.path. Non-existing directories (or
24non-directories) are never added to sys.path; no directory is added to
25sys.path more than once. Blank lines and lines beginning with
26\code{#} are skipped.
Guido van Rossume57c96e1996-08-17 19:56:26 +000027
Guido van Rossumf30bec71997-08-29 22:30:45 +000028For example, suppose sys.prefix and sys.exec_prefix are set to
Guido van Rossum62b297b1997-09-08 02:14:09 +000029/usr/local and there is a directory /usr/local/python1.5/site-packages
30with three subdirectories, foo, bar and spam, and two path
31configuration files, foo.pth and bar.pth. Assume foo.pth contains the
32following:
Guido van Rossumf30bec71997-08-29 22:30:45 +000033
34 # foo package configuration
35 foo
36 bar
37 bletch
38
39and bar.pth contains:
40
41 # bar package configuration
42 bar
43
44Then the following directories are added to sys.path, in this order:
45
Guido van Rossum62b297b1997-09-08 02:14:09 +000046 /usr/local/lib/python1.5/site-packages/bar
47 /usr/local/lib/python1.5/site-packages/foo
Guido van Rossumf30bec71997-08-29 22:30:45 +000048
49Note that bletch is omitted because it doesn't exist; bar precedes foo
50because bar.pth comes alphabetically before foo.pth; and spam is
51omitted because it is not mentioned in either path configuration file.
Guido van Rossume57c96e1996-08-17 19:56:26 +000052
53After these path manipulations, an attempt is made to import a module
Guido van Rossumf30bec71997-08-29 22:30:45 +000054named sitecustomize, which can perform arbitrary additional
55site-specific customizations. If this import fails with an
56ImportError exception, it is silently ignored.
Guido van Rossume57c96e1996-08-17 19:56:26 +000057
Guido van Rossume57c96e1996-08-17 19:56:26 +000058"""
59
60import sys, os
61
Guido van Rossumf30bec71997-08-29 22:30:45 +000062def addsitedir(sitedir):
63 if sitedir not in sys.path:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000064 sys.path.append(sitedir) # Add path component
Guido van Rossumf30bec71997-08-29 22:30:45 +000065 try:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000066 names = os.listdir(sitedir)
Guido van Rossumf30bec71997-08-29 22:30:45 +000067 except os.error:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000068 return
Guido van Rossumf30bec71997-08-29 22:30:45 +000069 names = map(os.path.normcase, names)
70 names.sort()
71 for name in names:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000072 if name[-4:] == ".pth":
73 addpackage(sitedir, name)
Guido van Rossumf30bec71997-08-29 22:30:45 +000074
75def addpackage(sitedir, name):
76 fullname = os.path.join(sitedir, name)
77 try:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000078 f = open(fullname)
Guido van Rossumf30bec71997-08-29 22:30:45 +000079 except IOError:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000080 return
Guido van Rossumf30bec71997-08-29 22:30:45 +000081 while 1:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000082 dir = f.readline()
83 if not dir:
84 break
85 if dir[0] == '#':
86 continue
87 if dir[-1] == '\n':
88 dir = dir[:-1]
89 dir = os.path.join(sitedir, dir)
90 if dir not in sys.path and os.path.exists(dir):
91 sys.path.append(dir)
Guido van Rossumf30bec71997-08-29 22:30:45 +000092
93prefixes = [sys.prefix]
94if sys.exec_prefix != sys.prefix:
95 prefixes.append(sys.exec_prefix)
96for prefix in prefixes:
Guido van Rossume57c96e1996-08-17 19:56:26 +000097 if prefix:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000098 if os.sep == '/':
99 sitedirs = [os.path.join(prefix,
100 "lib",
101 "python" + sys.version[:3],
102 "site-packages"),
103 os.path.join(prefix, "lib", "site-python")]
104 else:
105 sitedirs = [prefix]
106 for sitedir in sitedirs:
107 if os.path.isdir(sitedir):
108 addsitedir(sitedir)
Guido van Rossume57c96e1996-08-17 19:56:26 +0000109
110try:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000111 import sitecustomize # Run arbitrary site specific code
Guido van Rossume57c96e1996-08-17 19:56:26 +0000112except ImportError:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000113 pass # No site customization module
Guido van Rossumf30bec71997-08-29 22:30:45 +0000114
115def _test():
116 print "sys.path = ["
117 for dir in sys.path:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000118 print " %s," % `dir`
Guido van Rossumf30bec71997-08-29 22:30:45 +0000119 print "]"
120
121if __name__ == '__main__':
122 _test()