Fred Drake | 4fefcc3 | 2001-07-24 16:19:24 +0000 | [diff] [blame] | 1 | \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 | |
| 10 | The \module{distutils} package provides support for building and |
| 11 | installing additional modules into a Python installation. The new |
| 12 | modules may be either 100\%{}-pure Python, or may be extension modules |
| 13 | written in C, or may be collections of Python packages which include |
| 14 | modules coded in both Python and C. |
| 15 | |
| 16 | This package is discussed in two separate documents which are included |
| 17 | in the Python documentation package. To learn about distributing new |
| 18 | modules using the \module{distutils} facilities, read |
| 19 | \citetitle[../dist/dist.html]{Distributing Python Modules}. To learn |
| 20 | about installing Python modules, whether or not the author made use of |
| 21 | the \module{distutils} package, read |
| 22 | \citetitle[../inst/inst.html]{Installing Python Modules}. |
| 23 | |
| 24 | |
| 25 | \begin{seealso} |
| 26 | \seetitle[../dist/dist.html]{Distributing Python Modules}{The manual |
| 27 | for developers and packagers of Python modules. This |
| 28 | describes how to prepare \module{distutils}-based packages |
| 29 | so that they may be easily installed into an existing |
| 30 | Python installaion.} |
| 31 | |
| 32 | \seetitle[../inst/inst.html]{Installing Python Modules}{An |
| 33 | ``administrators'' manual which includes information on |
| 34 | installing modules into an existing Python installation. |
| 35 | You do not need to be a Python programmer to read this |
| 36 | manual.} |
| 37 | \end{seealso} |