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