blob: 3de9ddec9b3ec13738d778a6f36d2c24dcc2cd7a [file] [log] [blame]
Fred Drake4fefcc32001-07-24 16:19:24 +00001\section{\module{distutils} ---
2 Building and installing Python modules}
3
4\declaremodule{standard}{distutils}
5\modulesynopsis{Support for building and installing Python modules
6 into an existing Python installation.}
7\sectionauthor{Fred L. Drake, Jr.}{fdrake@acm.org}
8
9
10The \module{distutils} package provides support for building and
11installing additional modules into a Python installation. The new
12modules may be either 100\%{}-pure Python, or may be extension modules
13written in C, or may be collections of Python packages which include
14modules coded in both Python and C.
15
16This package is discussed in two separate documents which are included
17in the Python documentation package. To learn about distributing new
18modules using the \module{distutils} facilities, read
Fred Drakef39c3c72004-03-25 16:12:08 +000019\citetitle[../dist/dist.html]{Distributing Python Modules}; this
20includes documentation needed to extend distutils. To learn
Fred Drake4fefcc32001-07-24 16:19:24 +000021about installing Python modules, whether or not the author made use of
22the \module{distutils} package, read
23\citetitle[../inst/inst.html]{Installing Python Modules}.
24
25
26\begin{seealso}
27 \seetitle[../dist/dist.html]{Distributing Python Modules}{The manual
28 for developers and packagers of Python modules. This
29 describes how to prepare \module{distutils}-based packages
30 so that they may be easily installed into an existing
Fred Drake2f00c542004-03-25 16:14:17 +000031 Python installation.}
Fred Drake4fefcc32001-07-24 16:19:24 +000032
33 \seetitle[../inst/inst.html]{Installing Python Modules}{An
34 ``administrators'' manual which includes information on
35 installing modules into an existing Python installation.
36 You do not need to be a Python programmer to read this
37 manual.}
38\end{seealso}