ASPN ActiveState Programmer Network
  ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups | Web Services
SEARCH
advanced | search help

Reference
ActivePython 2.4
Python Documentation
Library Reference
18. Python Language Services
18.1 parser -- Access Python parse trees
18.2 symbol -- Constants used with Python parse trees
18.3 token -- Constants used with Python parse trees
18.4 keyword -- Testing for Python keywords
18.5 tokenize -- Tokenizer for Python source
18.6 tabnanny -- Detection of ambiguous indentation
18.7 pyclbr -- Python class browser support
18.8 py compile -- Compile Python source files
18.9 compileall -- Byte-compile Python libraries
18.10 dis -- Disassembler for Python byte code
18.11 pickletools -- Tools for pickle developers.
18.12 distutils -- Building and installing Python modules

MyASPN >> Reference >> ActivePython 2.4 >> Python Documentation >> Library Reference >> 18. Python Language Services
ActivePython 2.4 documentation

18.12 distutils -- Building and installing Python modules

The distutils package provides support for building and installing additional modules into a Python installation. The new modules may be either 100%-pure Python, or may be extension modules written in C, or may be collections of Python packages which include modules coded in both Python and C.

This package is discussed in two separate documents which are included in the Python documentation package. To learn about distributing new modules using the distutils facilities, read Distributing Python Modules; this includes documentation needed to extend distutils. To learn about installing Python modules, whether or not the author made use of the distutils package, read Installing Python Modules.

See Also:

Distributing Python Modules
The manual for developers and packagers of Python modules. This describes how to prepare distutils-based packages so that they may be easily installed into an existing Python installation.

Installing Python Modules
An ``administrators'' manual which includes information on installing modules into an existing Python installation. You do not need to be a Python programmer to read this manual.

See About this document... for information on suggesting changes.

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState 2004 All rights reserved