blob: 238b79dac2beb0ee2f2d1c2b7a737e517a6e42b2 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`distutils` --- Building and installing Python modules
2===========================================================
3
4.. module:: distutils
Georg Brandl71515ca2009-05-17 12:29:12 +00005 :synopsis: Support for building and installing Python modules into an
6 existing Python installation.
Georg Brandl116aa622007-08-15 14:28:22 +00007.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
8
9
10The :mod:`distutils` package provides support for building and installing
11additional modules into a Python installation. The new modules may be either
12100%-pure Python, or may be extension modules written in C, or may be
13collections of Python packages which include modules coded in both Python and C.
14
15This package is discussed in two separate chapters:
16
17
18.. seealso::
19
20 :ref:`distutils-index`
Georg Brandl71515ca2009-05-17 12:29:12 +000021 The manual for developers and packagers of Python modules. This describes
22 how to prepare :mod:`distutils`\ -based packages so that they may be
23 easily installed into an existing Python installation.
Georg Brandl116aa622007-08-15 14:28:22 +000024
25 :ref:`install-index`
Georg Brandl71515ca2009-05-17 12:29:12 +000026 An "administrators" manual which includes information on installing
27 modules into an existing Python installation. You do not need to be a
28 Python programmer to read this manual.
Georg Brandl116aa622007-08-15 14:28:22 +000029