blob: 7d226a168d6c9d55688e58e95a4ab88c12a8774d [file] [log] [blame]
Greg Ward7c1e5f62000-03-10 01:56:58 +00001\documentclass{howto}
Greg Ward7593eb32000-04-09 03:59:15 +00002\usepackage{distutils}
Greg Ward7c1e5f62000-03-10 01:56:58 +00003
4\title{Installing Python Modules}
5
6% The audience for this document includes people who don't know anything
7% about Python and aren't about to learn the language just in order to
8% install and maintain it for their users, i.e. system administrators.
9% Thus, I have to be sure to explain the basics at some point:
10% sys.path and PYTHONPATH at least. Should probably give pointers to
11% other docs on "import site", PYTHONSTARTUP, PYTHONHOME, etc.
12%
13% Also, I need to take into account that most modules out there don't
14% (yet) use Distutils: briefly explain the old Makefile.pre.in
15% convention (maybe move material from the E&E manual to here?), and
16% explain where to copy .py and .so files manually if the distribution
17% doesn't provide a mechanism for doing so.
18%
19% Finally, it might be useful to include all the material from my "Care
20% and Feeding of a Python Installation" talk in here somewhere. Yow!
21
Greg Ward7c1e5f62000-03-10 01:56:58 +000022\author{Greg Ward}
23\authoraddress{E-mail: \email{gward@python.net}}
24
Greg Warde3cca262000-08-31 16:36:31 +000025\makeindex
Greg Ward7c1e5f62000-03-10 01:56:58 +000026
27\begin{document}
28
29\maketitle
30
Greg Warde3cca262000-08-31 16:36:31 +000031\begin{abstract}
32 \noindent
33 This document describes the Python Distribution Utilities
34 (``Distutils'') from the end-user's point-of-view, describing how to
35 extend the capabilities of a standard Python installation by building
36 and installing third-party Python modules and extensions.
37\end{abstract}
38
Greg Ward7c1e5f62000-03-10 01:56:58 +000039%\begin{abstract}
40%\noindent
41%Abstract this!
42%\end{abstract}
43
Fred Drakea9a83e92001-03-01 18:37:52 +000044
45% The ugly "%begin{latexonly}" pseudo-environment supresses the table
46% of contents for HTML generation.
47%
48%begin{latexonly}
Greg Ward7c1e5f62000-03-10 01:56:58 +000049\tableofcontents
Fred Drakea9a83e92001-03-01 18:37:52 +000050%end{latexonly}
51
Greg Ward7c1e5f62000-03-10 01:56:58 +000052
53\section{Introduction}
Greg Warde78298a2000-04-28 17:12:24 +000054\label{intro}
Greg Ward7c1e5f62000-03-10 01:56:58 +000055
Greg Ward6002ffc2000-04-09 20:54:50 +000056Although Python's extensive standard library covers many programming
57needs, there often comes a time when you need to add some new
58functionality to your Python installation in the form of third-party
59modules. This might be necessary to support your own programming, or to
60support an application that you want to use and that happens to be
61written in Python.
62
63In the past, there has been little support for adding third-party
64modules to an existing Python installation. With the introduction of
Fred Drake01df4532000-06-30 03:36:41 +000065the Python Distribution Utilities (Distutils for short) in Python 2.0,
Greg Ward6002ffc2000-04-09 20:54:50 +000066this is starting to change. Not everything will change overnight,
67though, so while this document concentrates on installing module
68distributions that use the Distutils, we will also spend some time
69dealing with the old ways.
70
71This document is aimed primarily at the people who need to install
72third-party Python modules: end-users and system administrators who just
73need to get some Python application running, and existing Python
74programmers who want to add some new goodies to their toolbox. You
75don't need to know Python to read this document; there will be some
76brief forays into using Python's interactive mode to explore your
77installation, but that's it. If you're looking for information on how
78to distribute your own Python modules so that others may use them, see
Fred Drake01df4532000-06-30 03:36:41 +000079the \citetitle[../dist/dist.html]{Distributing Python Modules} manual.
Greg Ward7c1e5f62000-03-10 01:56:58 +000080
81
Greg Ward6002ffc2000-04-09 20:54:50 +000082\subsection{Best case: trivial installation}
Greg Ward1ed49ee2000-09-13 00:00:58 +000083\label{trivial-install}
Greg Ward6002ffc2000-04-09 20:54:50 +000084
85In the best case, someone will have prepared a special version of the
86module distribution you want to install that is targeted specifically at
87your platform and is installed just like any other software on your
88platform. For example, the module developer might make an executable
89installer available for Windows users, an RPM package for users of
90RPM-based Linux systems (Red Hat, SuSE, Mandrake, and many others), a
91Debian package for users of Debian-based Linux systems (Debian proper,
92Caldera, Corel, etc.), and so forth.
93
94In that case, you would download the installer appropriate to your
Greg Wardc392caa2000-04-11 02:00:26 +000095platform and do the obvious thing with it: run it if it's an executable
96installer, \code{rpm --install} it if it's an RPM, etc. You don't need
97to run Python or a setup script, you don't need to compile
98anything---you might not even need to read any instructions (although
99it's always a good idea to do so anyways).
Greg Ward6002ffc2000-04-09 20:54:50 +0000100
101Of course, things will not always be that easy. You might be interested
Greg Wardc392caa2000-04-11 02:00:26 +0000102in a module distribution that doesn't have an easy-to-use installer for
103your platform. In that case, you'll have to start with the source
104distribution released by the module's author/maintainer. Installing
105from a source distribution is not too hard, as long as the modules are
106packaged in the standard way. The bulk of this document is about
107building and installing modules from standard source distributions.
Greg Ward7c1e5f62000-03-10 01:56:58 +0000108
109
Greg Ward6002ffc2000-04-09 20:54:50 +0000110\subsection{The new standard: Distutils}
Greg Warde78298a2000-04-28 17:12:24 +0000111\label{new-standard}
Greg Ward6002ffc2000-04-09 20:54:50 +0000112
113If you download a module source distribution, you can tell pretty
Greg Ward19c67f82000-06-24 01:33:16 +0000114quickly if it was packaged and distributed in the standard way, i.e.
115using the Distutils. First, the distribution's name and version number
116will be featured prominently in the name of the downloaded archive, e.g.
Greg Ward6002ffc2000-04-09 20:54:50 +0000117\file{foo-1.0.tar.gz} or \file{widget-0.9.7.zip}. Next, the archive
118will unpack into a similarly-named directory: \file{foo-1.0} or
119\file{widget-0.9.7}. Additionally, the distribution will contain a
120setup script \file{setup.py}, and a \file{README.txt} (or possibly
121\file{README}), which should explain that building and installing the
122module distribution is a simple matter of running
Fred Drakea9a83e92001-03-01 18:37:52 +0000123
Greg Ward6002ffc2000-04-09 20:54:50 +0000124\begin{verbatim}
125python setup.py install
126\end{verbatim}
127
128If all these things are true, then you already know how to build and
129install the modules you've just downloaded: run the command above.
130Unless you need to install things in a non-standard way or customize the
131build process, you don't really need this manual. Or rather, the above
132command is everything you need to get out of this manual.
Greg Ward7c1e5f62000-03-10 01:56:58 +0000133
134
Greg Ward6002ffc2000-04-09 20:54:50 +0000135\subsection{The old way: no standards}
Greg Warde78298a2000-04-28 17:12:24 +0000136\label{old-way}
Greg Ward7c1e5f62000-03-10 01:56:58 +0000137
Greg Ward6002ffc2000-04-09 20:54:50 +0000138Before the Distutils, there was no infrastructure to support installing
139third-party modules in a consistent, standardized way. Thus, it's not
140really possible to write a general manual for installing Python modules
141that don't use the Distutils; the only truly general statement that can
Greg Wardc392caa2000-04-11 02:00:26 +0000142be made is, ``Read the module's own installation instructions.''
Greg Ward6002ffc2000-04-09 20:54:50 +0000143
Greg Ward19c67f82000-06-24 01:33:16 +0000144However, if such instructions exist at all, they are often woefully
Greg Wardc392caa2000-04-11 02:00:26 +0000145inadequate and targeted at experienced Python developers. Such users
146are already familiar with how the Python library is laid out on their
147platform, and know where to copy various files in order for Python to
148find them. This document makes no such assumptions, and explains how
Fred Drakeeff9a872000-10-26 16:41:03 +0000149the Python library is laid out on three major platforms (\UNIX, Windows,
150and MacOS), so that you can understand what happens when the Distutils
Greg Wardc392caa2000-04-11 02:00:26 +0000151do their job \emph{and} know how to install modules manually when the
152module author fails to provide a setup script.
Greg Ward6002ffc2000-04-09 20:54:50 +0000153
154Additionally, while there has not previously been a standard
155installation mechanism, Python has had some standard machinery for
Andrew M. Kuchling30537da2001-02-17 00:42:56 +0000156building extensions on \UNIX{} since Python 1.4. This
Fred Drakeeff9a872000-10-26 16:41:03 +0000157machinery (the \file{Makefile.pre.in} file) is superseded by the
158Distutils, but it will no doubt live on in older module distributions
159for a while. This \file{Makefile.pre.in} mechanism is documented in
160the \citetitle[../ext/ext.html]{Extending \& Embedding Python} manual,
161but that manual is aimed at module developers---hence, we include
162documentation for builders/installers here.
Greg Ward6002ffc2000-04-09 20:54:50 +0000163
164All of the pre-Distutils material is tucked away in
Greg Warde78298a2000-04-28 17:12:24 +0000165section~\ref{pre-distutils}.
Greg Ward7c1e5f62000-03-10 01:56:58 +0000166
167
Greg Ward29576562000-03-18 15:11:50 +0000168\section{Standard Build and Install}
Greg Ward1ed49ee2000-09-13 00:00:58 +0000169\label{standard-install}
Greg Ward7c1e5f62000-03-10 01:56:58 +0000170
Greg Warde78298a2000-04-28 17:12:24 +0000171As described in section~\ref{new-standard}, building and installing
Greg Ward6002ffc2000-04-09 20:54:50 +0000172a module distribution using the Distutils is usually one simple command:
Fred Drakea9a83e92001-03-01 18:37:52 +0000173
Greg Ward6002ffc2000-04-09 20:54:50 +0000174\begin{verbatim}
175python setup.py install
176\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000177
Fred Drakeeff9a872000-10-26 16:41:03 +0000178On \UNIX, you'd run this command from a shell prompt; on Windows, you
Greg Warde24f05e2000-09-12 23:55:19 +0000179have to open a command prompt window (``DOS box'') and do it there; on
Fred Drakeeff9a872000-10-26 16:41:03 +0000180MacOS, things are a tad more complicated (see below).
Greg Ward6002ffc2000-04-09 20:54:50 +0000181
182
183\subsection{Platform variations}
Greg Ward1ed49ee2000-09-13 00:00:58 +0000184\label{platform-variations}
Greg Ward6002ffc2000-04-09 20:54:50 +0000185
186You should always run the setup command from the distribution root
187directory, i.e. the top-level subdirectory that the module source
188distribution unpacks into. For example, if you've just downloaded a
Fred Drakeeff9a872000-10-26 16:41:03 +0000189module source distribution \file{foo-1.0.tar.gz} onto a
190\UNIX{} system, the normal thing to do is:
Fred Drakea9a83e92001-03-01 18:37:52 +0000191
Greg Ward6002ffc2000-04-09 20:54:50 +0000192\begin{verbatim}
193gunzip -c foo-1.0.tar.gz | tar xf - # unpacks into directory foo-1.0
194cd foo-1.0
195python setup.py install
196\end{verbatim}
197
Greg Warde24f05e2000-09-12 23:55:19 +0000198On Windows, you'd probably download \file{foo-1.0.zip}. If you
199downloaded the archive file to \file{C:\textbackslash{}Temp}, then it
200would unpack into \file{C:\textbackslash{}Temp\textbackslash{}foo-1.0};
201you can use either a GUI archive manipulator (such as WinZip) or a
202command-line tool (such as \program{unzip} or \program{pkunzip}) to
203unpack the archive. Then, open a command prompt window (``DOS box''),
204and run:
Fred Drakea9a83e92001-03-01 18:37:52 +0000205
Greg Ward6002ffc2000-04-09 20:54:50 +0000206\begin{verbatim}
Greg Warde24f05e2000-09-12 23:55:19 +0000207cd c:\Temp\foo-1.0
Greg Ward6002ffc2000-04-09 20:54:50 +0000208python setup.py install
209\end{verbatim}
210
Fred Drakeeff9a872000-10-26 16:41:03 +0000211On MacOS, you have to go through a bit more effort to supply
Greg Warde24f05e2000-09-12 23:55:19 +0000212command-line arguments to the setup script:
213\begin{itemize}
214\item hit option-double-click on the script's icon (or option-drop it
215 onto the Python interpreter's icon)
216\item press the ``Set unix-style command line'' button
217\item set the ``Keep stdio window open on termination'' if you're
218 interested in seeing the output of the setup script (which is usually
219 voluminous and often useful)
Greg Ward15f5e2a2000-09-26 02:54:43 +0000220\item when the command-line dialog pops up, enter ``install'' (you
Greg Warde24f05e2000-09-12 23:55:19 +0000221 can, of course, enter any Distutils command-line as described in this
Fred Drakeeff9a872000-10-26 16:41:03 +0000222 document or in \citetitle[../dist/dist.html]{Distributing Python
223 Modules}: just leave off the initial \code{python setup.py} and
224 you'll be fine)
Greg Warde24f05e2000-09-12 23:55:19 +0000225\end{itemize}
226\XXX{this should change: every Distutils setup script will need
227 command-line arguments for every run (and should probably keep stdout
228 around), so all this should happen automatically for setup scripts}
Greg Wardc392caa2000-04-11 02:00:26 +0000229
Greg Ward6002ffc2000-04-09 20:54:50 +0000230
231\subsection{Splitting the job up}
Greg Ward1ed49ee2000-09-13 00:00:58 +0000232\label{splitting-up}
Greg Ward6002ffc2000-04-09 20:54:50 +0000233
234Running \code{setup.py install} builds and installs all modules in one
Greg Ward14deaae2000-09-11 00:33:15 +0000235run. If you prefer to work incrementally---especially useful if you
236want to customize the build process, or if things are going wrong---you
237can use the setup script to do one thing at a time. This is
Greg Ward3e7b1332000-05-30 03:00:43 +0000238particularly helpful when the build and install will be done by
239different users---e.g., you might want to build a module distribution
240and hand it off to a system administrator for installation (or do it
241yourself, with super-user privileges).
Greg Ward6002ffc2000-04-09 20:54:50 +0000242
243For example, you can build everything in one step, and then install
244everything in a second step, by invoking the setup script twice:
Fred Drakea9a83e92001-03-01 18:37:52 +0000245
Greg Ward6002ffc2000-04-09 20:54:50 +0000246\begin{verbatim}
247python setup.py build
248python setup.py install
249\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000250
Greg Ward6002ffc2000-04-09 20:54:50 +0000251(If you do this, you will notice that running the \command{install}
Greg Ward14deaae2000-09-11 00:33:15 +0000252command first runs the \command{build} command, which---in this
253case---quickly notices that it has nothing to do, since everything in
254the \file{build} directory is up-to-date.)
Greg Ward29576562000-03-18 15:11:50 +0000255
Greg Ward14deaae2000-09-11 00:33:15 +0000256You may not need this ability to break things down often if all you do
257is install modules downloaded off the 'net, but it's very handy for more
258advanced tasks. If you get into distributing your own Python modules
259and extensions, you'll run lots of individual Distutils commands on
260their own.
Greg Ward7c1e5f62000-03-10 01:56:58 +0000261
262
Greg Wardc392caa2000-04-11 02:00:26 +0000263\subsection{How building works}
Greg Ward1ed49ee2000-09-13 00:00:58 +0000264\label{how-build-works}
Greg Ward7c1e5f62000-03-10 01:56:58 +0000265
Greg Wardc392caa2000-04-11 02:00:26 +0000266As implied above, the \command{build} command is responsible for putting
267the files to install into a \emph{build directory}. By default, this is
268\file{build} under the distribution root; if you're excessively
269concerned with speed, or want to keep the source tree pristine, you can
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000270change the build directory with the \longprogramopt{build-base} option.
271For example:
Fred Drakea9a83e92001-03-01 18:37:52 +0000272
Greg Wardc392caa2000-04-11 02:00:26 +0000273\begin{verbatim}
274python setup.py build --build-base=/tmp/pybuild/foo-1.0
275\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000276
Greg Wardc392caa2000-04-11 02:00:26 +0000277(Or you could do this permanently with a directive in your system or
278personal Distutils configuration file; see
Greg Warde78298a2000-04-28 17:12:24 +0000279section~\ref{config-files}.) Normally, this isn't necessary.
Greg Wardc392caa2000-04-11 02:00:26 +0000280
281The default layout for the build tree is as follows:
Fred Drakea9a83e92001-03-01 18:37:52 +0000282
Greg Wardc392caa2000-04-11 02:00:26 +0000283\begin{verbatim}
284--- build/ --- lib/
285or
286--- build/ --- lib.<plat>/
287 temp.<plat>/
288\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000289
Greg Wardc392caa2000-04-11 02:00:26 +0000290where \code{<plat>} expands to a brief description of the current
Greg Ward7ef2ba72000-10-22 01:40:08 +0000291OS/hardware platform and Python version. The first form, with just a
292\file{lib} directory, is used for ``pure module distributions''---that
293is, module distributions that include only pure Python modules. If a
294module distribution contains any extensions (modules written in C/C++),
295then the second form, with two \code{<plat>} directories, is used. In
296that case, the \file{temp.\filevar{plat}} directory holds temporary
297files generated by the compile/link process that don't actually get
298installed. In either case, the \file{lib} (or
Greg Wardc392caa2000-04-11 02:00:26 +0000299\file{lib.\filevar{plat}}) directory contains all Python modules (pure
300Python and extensions) that will be installed.
301
302In the future, more directories will be added to handle Python scripts,
303documentation, binary executables, and whatever else is needed to handle
Greg Wardd5faa7e2000-04-12 01:42:19 +0000304the job of installing Python modules and applications.
Greg Wardc392caa2000-04-11 02:00:26 +0000305
306
307\subsection{How installation works}
Greg Ward1ed49ee2000-09-13 00:00:58 +0000308\label{how-install-works}
Greg Wardc392caa2000-04-11 02:00:26 +0000309
310After the \command{build} command runs (whether you run it explicitly,
311or the \command{install} command does it for you), the work of the
312\command{install} command is relatively simple: all it has to do is copy
313everything under \file{build/lib} (or \file{build/lib.\filevar{plat}})
314to your chosen installation directory.
315
316If you don't choose an installation directory---i.e., if you just run
317\code{setup.py install}---then the \command{install} command installs to
318the standard location for third-party Python modules. This location
319varies by platform and by how you built/installed Python itself. On
Fred Drakeeff9a872000-10-26 16:41:03 +0000320\UNIX{} and MacOS, it also depends on whether the module distribution
Greg Wardc392caa2000-04-11 02:00:26 +0000321being installed is pure Python or contains extensions (``non-pure''):
Greg Wardd5faa7e2000-04-12 01:42:19 +0000322\begin{tableiv}{l|l|l|c}{textrm}%
323 {Platform}{Standard installation location}{Default value}{Notes}
Fred Drakeeff9a872000-10-26 16:41:03 +0000324 \lineiv{\UNIX{} (pure)}
Fred Drake01df4532000-06-30 03:36:41 +0000325 {\filenq{\filevar{prefix}/lib/python2.0/site-packages}}
326 {\filenq{/usr/local/lib/python2.0/site-packages}}
Greg Ward502d2b42000-04-12 14:20:15 +0000327 {(1)}
Fred Drakeeff9a872000-10-26 16:41:03 +0000328 \lineiv{\UNIX{} (non-pure)}
Fred Drake01df4532000-06-30 03:36:41 +0000329 {\filenq{\filevar{exec-prefix}/lib/python2.0/site-packages}}
330 {\filenq{/usr/local/lib/python2.0/site-packages}}
Greg Ward502d2b42000-04-12 14:20:15 +0000331 {(1)}
Greg Wardd5faa7e2000-04-12 01:42:19 +0000332 \lineiv{Windows}
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000333 {\filenq{\filevar{prefix}}}
Greg Ward4756e5f2000-04-19 22:40:12 +0000334 {\filenq{C:\textbackslash{}Python}}
Greg Ward502d2b42000-04-12 14:20:15 +0000335 {(2)}
Fred Drakeeff9a872000-10-26 16:41:03 +0000336 \lineiv{MacOS (pure)}
Greg Ward7ef2ba72000-10-22 01:40:08 +0000337 {\filenq{\filevar{prefix}:Lib:site-packages}}
338 {\filenq{Python:Lib:site-packages}}
Greg Wardd5faa7e2000-04-12 01:42:19 +0000339 {}
Fred Drakeeff9a872000-10-26 16:41:03 +0000340 \lineiv{MacOS (non-pure)}
Greg Ward7ef2ba72000-10-22 01:40:08 +0000341 {\filenq{\filevar{prefix}:Lib:site-packages}}
342 {\filenq{Python:Lib:site-packages}}
Greg Wardd5faa7e2000-04-12 01:42:19 +0000343 {}
344\end{tableiv}
345
346\noindent Notes:
347\begin{description}
Greg Ward502d2b42000-04-12 14:20:15 +0000348\item[(1)] Most Linux distributions include Python as a standard part of
349 the system, so \filevar{prefix} and \filevar{exec-prefix} are usually
350 both \file{/usr} on Linux. If you build Python yourself on Linux (or
Fred Drakeeff9a872000-10-26 16:41:03 +0000351 any \UNIX-like system), the default \filevar{prefix} and
Greg Ward502d2b42000-04-12 14:20:15 +0000352 \filevar{exec-prefix} are \file{/usr/local}.
353\item[(2)] The default installation directory on Windows was
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000354 \file{C:\textbackslash{}Program Files\textbackslash{}Python} under
355 Python 1.6a1, 1.5.2, and earlier.
Greg Wardd5faa7e2000-04-12 01:42:19 +0000356\end{description}
357
Greg Wardc392caa2000-04-11 02:00:26 +0000358\filevar{prefix} and \filevar{exec-prefix} stand for the directories
359that Python is installed to, and where it finds its libraries at
Fred Drakeeff9a872000-10-26 16:41:03 +0000360run-time. They are always the same under Windows and MacOS, and very
361often the same under \UNIX. You can find out what your Python
Greg Wardc392caa2000-04-11 02:00:26 +0000362installation uses for \filevar{prefix} and \filevar{exec-prefix} by
363running Python in interactive mode and typing a few simple commands.
Fred Drakeeff9a872000-10-26 16:41:03 +0000364Under \UNIX, just type \code{python} at the shell prompt; under Windows,
365run ``Python 2.0 (interpreter)'' \XXX{right?}; under MacOS, \XXX{???}.
Fred Drake01df4532000-06-30 03:36:41 +0000366Once the interpreter is started, you type Python code at the
367\samp{>>> } prompt. For example, on my Linux system, I type the three
368Python statements shown below, and get the output as shown, to find
369out my \filevar{prefix} and \filevar{exec-prefix}:
370
Greg Wardc392caa2000-04-11 02:00:26 +0000371\begin{verbatim}
372Python 1.5.2 (#1, Apr 18 1999, 16:03:16) [GCC pgcc-2.91.60 19981201 (egcs-1.1.1 on linux2
373Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
374>>> import sys
375>>> sys.prefix
376'/usr'
377>>> sys.exec_prefix
378'/usr'
379\end{verbatim}
380
Greg Ward7ef2ba72000-10-22 01:40:08 +0000381If you don't want to install modules to the standard location, or if you
382don't have permission to write there, then you need to read about
383alternate installations in section~\ref{alt-install}. If you want to
384customize your installation directories more heavily, see
385section~\ref{custom-install} on custom installations.
Greg Wardc392caa2000-04-11 02:00:26 +0000386
387
388% This rather nasty macro is used to generate the tables that describe
389% each installation scheme. It's nasty because it takes two arguments
390% for each "slot" in an installation scheme, there will soon be more
391% than five of these slots, and TeX has a limit of 10 arguments to a
392% macro. Uh-oh.
393
Greg Ward29576562000-03-18 15:11:50 +0000394\newcommand{\installscheme}[8]
395 {\begin{tableiii}{lll}{textrm}
396 {Type of file}
397 {Installation Directory}
398 {Override option}
399 \lineiii{pure module distribution}
400 {\filevar{#1}\filenq{#2}}
Greg Warda021aca2000-04-19 22:34:11 +0000401 {\longprogramopt{install-purelib}}
Greg Ward29576562000-03-18 15:11:50 +0000402 \lineiii{non-pure module distribution}
403 {\filevar{#3}\filenq{#4}}
Greg Warda021aca2000-04-19 22:34:11 +0000404 {\longprogramopt{install-platlib}}
Greg Ward29576562000-03-18 15:11:50 +0000405 \lineiii{scripts}
406 {\filevar{#5}\filenq{#6}}
Greg Warda021aca2000-04-19 22:34:11 +0000407 {\longprogramopt{install-scripts}}
Greg Ward29576562000-03-18 15:11:50 +0000408 \lineiii{data}
409 {\filevar{#7}\filenq{#8}}
Greg Warda021aca2000-04-19 22:34:11 +0000410 {\longprogramopt{install-data}}
Greg Ward29576562000-03-18 15:11:50 +0000411 \end{tableiii}}
Greg Ward7c1e5f62000-03-10 01:56:58 +0000412
Greg Ward0bc59532000-09-30 21:06:40 +0000413
414\section{Building Extensions: Tips and Tricks}
415\label{building-ext}
416
417(This is the section to read for people doing any sort of interesting
418build. Things to talk about:
419\begin{itemize}
Fred Drakeeff9a872000-10-26 16:41:03 +0000420\item the \file{Setup} file (any platform now, but \UNIX-biased)
Greg Ward0bc59532000-09-30 21:06:40 +0000421\item CFLAGS and LDFLAGS (must implement them first!)
422\item using non-MS compilers on Windows (how to convert
423 Python's library, ...)
424\end{itemize}
425
426
Fred Drakea9a83e92001-03-01 18:37:52 +0000427%\subsection{Tweaking compiler/linker flags}
428%\label{tweak-flags}
Greg Ward0bc59532000-09-30 21:06:40 +0000429
430
431\subsection{Using non-Microsoft compilers on Windows}
432\label{non-ms-compilers}
433
434\XXX{One place to look: \url{http://www.cyberus.ca/~g_will/pyExtenDL.shtml}}
435
436
437
Greg Ward29576562000-03-18 15:11:50 +0000438\section{Alternate Installation}
Greg Warde78298a2000-04-28 17:12:24 +0000439\label{alt-install}
Greg Ward7c1e5f62000-03-10 01:56:58 +0000440
Greg Ward29576562000-03-18 15:11:50 +0000441Often, it is necessary or desirable to install modules to a location
442other than the standard location for third-party Python modules. For
Fred Drakeeff9a872000-10-26 16:41:03 +0000443example, on a \UNIX{} system you might not have permission to write to the
Greg Ward29576562000-03-18 15:11:50 +0000444standard third-party module directory. Or you might wish to try out a
445module before making it a standard part of your local Python
446installation; this is especially true when upgrading a distribution
447already present: you want to make sure your existing base of scripts
448still works with the new version before actually upgrading.
449
450The Distutils \command{install} command is designed to make installing
451module distributions to an alternate location simple and painless. The
452basic idea is that you supply a base directory for the installation, and
453the \command{install} command picks a set of directories (called an
454\emph{installation scheme}) under this base directory in which to
455install files. The details differ across platforms, so read whichever
Andrew M. Kuchling30537da2001-02-17 00:42:56 +0000456of the following sections applies to you.
Greg Ward29576562000-03-18 15:11:50 +0000457
458
Fred Drakeeff9a872000-10-26 16:41:03 +0000459\subsection{Alternate installation: \UNIX{} (the home scheme)}
Greg Ward1ed49ee2000-09-13 00:00:58 +0000460\label{alt-install-prefix}
Greg Ward29576562000-03-18 15:11:50 +0000461
Fred Drakeeff9a872000-10-26 16:41:03 +0000462Under \UNIX, there are two ways to perform an alternate installation.
Greg Ward29576562000-03-18 15:11:50 +0000463The ``prefix scheme'' is similar to how alternate installation works
Fred Drakeeff9a872000-10-26 16:41:03 +0000464under Windows and MacOS, but is not necessarily the most useful way to
Greg Ward29576562000-03-18 15:11:50 +0000465maintain a personal Python library. Hence, we document the more
466convenient and commonly useful ``home scheme'' first.
467
Greg Wardc392caa2000-04-11 02:00:26 +0000468The idea behind the ``home scheme'' is that you build and maintain a
469personal stash of Python modules, probably under your home directory.
470Installing a new module distribution is as simple as
Fred Drakea9a83e92001-03-01 18:37:52 +0000471
Greg Ward29576562000-03-18 15:11:50 +0000472\begin{verbatim}
473python setup.py install --home=<dir>
474\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000475
Greg Warda021aca2000-04-19 22:34:11 +0000476where you can supply any directory you like for the \longprogramopt{home}
Greg Ward4756e5f2000-04-19 22:40:12 +0000477option. Lazy typists can just type a tilde (\code{\textasciitilde}); the
Greg Wardc392caa2000-04-11 02:00:26 +0000478\command{install} command will expand this to your home directory:
Fred Drakea9a83e92001-03-01 18:37:52 +0000479
Greg Wardc392caa2000-04-11 02:00:26 +0000480\begin{verbatim}
481python setup.py install --home=~
482\end{verbatim}
Greg Ward29576562000-03-18 15:11:50 +0000483
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000484The \longprogramopt{home} option defines the installation base
485directory. Files are installed to the following directories under the
486installation base as follows:
Greg Ward29576562000-03-18 15:11:50 +0000487\installscheme{home}{/lib/python}
488 {home}{/lib/python}
489 {home}{/bin}
490 {home}{/share}
491
Fred Drakeeff9a872000-10-26 16:41:03 +0000492\subsection{Alternate installation: \UNIX{} (the prefix scheme)}
Greg Ward1ed49ee2000-09-13 00:00:58 +0000493\label{alt-install-home}
Greg Ward29576562000-03-18 15:11:50 +0000494
495The ``prefix scheme'' is useful when you wish to use one Python
496installation to perform the build/install (i.e., to run the setup
497script), but install modules into the third-party module directory of a
498different Python installation (or something that looks like a different
499Python installation). If this sounds a trifle unusual, it is---that's
500why the ``home scheme'' comes first. However, there are at least two
501known cases where the prefix scheme will be useful.
502
Greg Ward19c67f82000-06-24 01:33:16 +0000503First, consider that many Linux distributions put Python in \file{/usr},
Greg Ward29576562000-03-18 15:11:50 +0000504rather than the more traditional \file{/usr/local}. This is entirely
505appropriate, since in those cases Python is part of ``the system''
506rather than a local add-on. However, if you are installing Python
507modules from source, you probably want them to go in
508\file{/usr/local/lib/python1.\filevar{X}} rather than
509\file{/usr/lib/python1.\filevar{X}}. This can be done with
Fred Drakea9a83e92001-03-01 18:37:52 +0000510
Greg Ward29576562000-03-18 15:11:50 +0000511\begin{verbatim}
512/usr/bin/python setup.py install --prefix=/usr/local
513\end{verbatim}
514
515Another possibility is a network filesystem where the name used to write
516to a remote directory is different from the name used to read it: for
517example, the Python interpreter accessed as \file{/usr/local/bin/python}
518might search for modules in \file{/usr/local/lib/python1.\filevar{X}},
519but those modules would have to be installed to, say,
520\file{/mnt/\filevar{@server}/export/lib/python1.\filevar{X}}. This
521could be done with
Fred Drakea9a83e92001-03-01 18:37:52 +0000522
Greg Ward29576562000-03-18 15:11:50 +0000523\begin{verbatim}
524/usr/local/bin/python setup.py install --prefix=/mnt/@server/export
525\end{verbatim}
526
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000527In either case, the \longprogramopt{prefix} option defines the
528installation base, and the \longprogramopt{exec-prefix} option defines
529the platform-specific installation base, which is used for
530platform-specific files. (Currently, this just means non-pure module
531distributions, but could be expanded to C libraries, binary executables,
532etc.) If \longprogramopt{exec-prefix} is not supplied, it defaults to
533\longprogramopt{prefix}. Files are installed as follows:
Greg Ward29576562000-03-18 15:11:50 +0000534
535\installscheme{prefix}{/lib/python1.\filevar{X}/site-packages}
536 {exec-prefix}{/lib/python1.\filevar{X}/site-packages}
537 {prefix}{/bin}
538 {prefix}{/share}
539
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000540There is no requirement that \longprogramopt{prefix} or
541\longprogramopt{exec-prefix} actually point to an alternate Python
542installation; if the directories listed above do not already exist, they
543are created at installation time.
Greg Ward29576562000-03-18 15:11:50 +0000544
545Incidentally, the real reason the prefix scheme is important is simply
Fred Drakeeff9a872000-10-26 16:41:03 +0000546that a standard \UNIX{} installation uses the prefix scheme, but with
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000547\longprogramopt{prefix} and \longprogramopt{exec-prefix} supplied by
548Python itself (as \code{sys.prefix} and \code{sys.exec\_prefix}). Thus,
549you might think you'll never use the prefix scheme, but every time you
550run \code{python setup.py install} without any other options, you're
551using it.
Greg Ward29576562000-03-18 15:11:50 +0000552
553Note that installing extensions to an alternate Python installation has
554no effect on how those extensions are built: in particular, the Python
555header files (\file{Python.h} and friends) installed with the Python
556interpreter used to run the setup script will be used in compiling
557extensions. It is your responsibility to ensure that the interpreter
558used to run extensions installed in this way is compatibile with the
Greg Wardc392caa2000-04-11 02:00:26 +0000559interpreter used to build them. The best way to do this is to ensure
560that the two interpreters are the same version of Python (possibly
561different builds, or possibly copies of the same build). (Of course, if
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000562your \longprogramopt{prefix} and \longprogramopt{exec-prefix} don't even
563point to an alternate Python installation, this is immaterial.)
Greg Ward29576562000-03-18 15:11:50 +0000564
565
566\subsection{Alternate installation: Windows}
Greg Ward1ed49ee2000-09-13 00:00:58 +0000567\label{alt-install-windows}
Greg Ward29576562000-03-18 15:11:50 +0000568
569Since Windows has no conception of a user's home directory, and since
570the standard Python installation under Windows is simpler than that
Fred Drakeeff9a872000-10-26 16:41:03 +0000571under \UNIX, there's no point in having separate \longprogramopt{prefix}
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000572and \longprogramopt{home} options. Just use the \longprogramopt{prefix}
573option to specify a base directory, e.g.
Fred Drakea9a83e92001-03-01 18:37:52 +0000574
Greg Ward29576562000-03-18 15:11:50 +0000575\begin{verbatim}
Greg Ward8e14f052000-03-22 01:00:23 +0000576python setup.py install --prefix="\Temp\Python"
Greg Ward29576562000-03-18 15:11:50 +0000577\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000578
Greg Ward4756e5f2000-04-19 22:40:12 +0000579to install modules to the \file{\textbackslash{}Temp} directory on the current
Greg Ward29576562000-03-18 15:11:50 +0000580drive.
581
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000582The installation base is defined by the \longprogramopt{prefix} option;
583the \longprogramopt{exec-prefix} option is not supported under Windows.
584Files are installed as follows:
Greg Ward29576562000-03-18 15:11:50 +0000585\installscheme{prefix}{}
586 {prefix}{}
Greg Ward4756e5f2000-04-19 22:40:12 +0000587 {prefix}{\textbackslash{}Scripts}
588 {prefix}{\textbackslash{}Data}
Greg Ward29576562000-03-18 15:11:50 +0000589
590
Fred Drakeeff9a872000-10-26 16:41:03 +0000591\subsection{Alternate installation: MacOS}
Greg Ward1ed49ee2000-09-13 00:00:58 +0000592\label{alt-install-macos}
Greg Ward29576562000-03-18 15:11:50 +0000593
Fred Drakeeff9a872000-10-26 16:41:03 +0000594Like Windows, MacOS has no notion of home directories (or even of
Greg Ward29576562000-03-18 15:11:50 +0000595users), and a fairly simple standard Python installation. Thus, only a
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000596\longprogramopt{prefix} option is needed. It defines the installation
597base, and files are installed under it as follows:
Greg Ward29576562000-03-18 15:11:50 +0000598
Greg Ward8c562592000-09-13 00:12:37 +0000599\installscheme{prefix}{:Lib:site-packages}
600 {prefix}{:Lib:site-packages}
Greg Ward8e14f052000-03-22 01:00:23 +0000601 {prefix}{:Scripts}
602 {prefix}{:Data}
Greg Ward29576562000-03-18 15:11:50 +0000603
Greg Ward8c562592000-09-13 00:12:37 +0000604See section~\ref{platform-variations} for information on supplying
605command-line arguments to the setup script with MacPython.
Greg Ward29576562000-03-18 15:11:50 +0000606
607
608\section{Custom Installation}
Greg Warde78298a2000-04-28 17:12:24 +0000609\label{custom-install}
Greg Ward29576562000-03-18 15:11:50 +0000610
611Sometimes, the alternate installation schemes described in
Greg Warde78298a2000-04-28 17:12:24 +0000612section~\ref{alt-install} just don't do what you want. You might
Greg Ward29576562000-03-18 15:11:50 +0000613want to tweak just one or two directories while keeping everything under
614the same base directory, or you might want to completely redefine the
615installation scheme. In either case, you're creating a \emph{custom
616 installation scheme}.
617
618You probably noticed the column of ``override options'' in the tables
619describing the alternate installation schemes above. Those options are
620how you define a custom installation scheme. These override options can
621be relative, absolute, or explicitly defined in terms of one of the
622installation base directories. (There are two installation base
623directories, and they are normally the same---they only differ when you
Fred Drakeeff9a872000-10-26 16:41:03 +0000624use the \UNIX{} ``prefix scheme'' and supply different
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000625\longprogramopt{prefix} and \longprogramopt{exec-prefix} options.)
Greg Ward29576562000-03-18 15:11:50 +0000626
627For example, say you're installing a module distribution to your home
Fred Drakeeff9a872000-10-26 16:41:03 +0000628directory under \UNIX---but you want scripts to go in
Greg Ward4eaa3bf2000-04-19 22:44:25 +0000629\file{\textasciitilde/scripts} rather than \file{\textasciitilde/bin}.
630As you might expect, you can override this directory with the
631\longprogramopt{install-scripts} option; in this case, it makes most
632sense to supply a relative path, which will be interpreted relative to
633the installation base directory (your home directory, in this case):
Fred Drakea9a83e92001-03-01 18:37:52 +0000634
Greg Ward29576562000-03-18 15:11:50 +0000635\begin{verbatim}
Greg Ward19c67f82000-06-24 01:33:16 +0000636python setup.py install --home=~ --install-scripts=scripts
Greg Ward29576562000-03-18 15:11:50 +0000637\end{verbatim}
638
Fred Drakeeff9a872000-10-26 16:41:03 +0000639Another \UNIX{} example: suppose your Python installation was built and
Greg Ward29576562000-03-18 15:11:50 +0000640installed with a prefix of \file{/usr/local/python}, so under a standard
641installation scripts will wind up in \file{/usr/local/python/bin}. If
642you want them in \file{/usr/local/bin} instead, you would supply this
Greg Warda021aca2000-04-19 22:34:11 +0000643absolute directory for the \longprogramopt{install-scripts} option:
Fred Drakea9a83e92001-03-01 18:37:52 +0000644
Greg Ward29576562000-03-18 15:11:50 +0000645\begin{verbatim}
646python setup.py install --install-scripts=/usr/local/bin
647\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000648
Greg Ward29576562000-03-18 15:11:50 +0000649(This performs an installation using the ``prefix scheme,'' where the
650prefix is whatever your Python interpreter was installed with---
651\file{/usr/local/python} in this case.)
652
653If you maintain Python on Windows, you might want third-party modules to
654live in a subdirectory of \filevar{prefix}, rather than right in
655\filevar{prefix} itself. This is almost as easy as customizing the
656script installation directory---you just have to remember that there are
657two types of modules to worry about, pure modules and non-pure modules
658(i.e., modules from a non-pure distribution). For example:
Fred Drakea9a83e92001-03-01 18:37:52 +0000659
Greg Ward29576562000-03-18 15:11:50 +0000660\begin{verbatim}
661python setup.py install --install-purelib=Site --install-platlib=Site
662\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000663
Greg Ward29576562000-03-18 15:11:50 +0000664The specified installation directories are relative to \filevar{prefix}.
665Of course, you also have to ensure that these directories are in
666Python's module search path, e.g. by putting a \file{.pth} file in
Greg Ward6002ffc2000-04-09 20:54:50 +0000667\filevar{prefix} (\XXX{should have a section describing .pth files and
668 cross-ref it here}).
Greg Ward29576562000-03-18 15:11:50 +0000669
670If you want to define an entire installation scheme, you just have to
671supply all of the installation directory options. The recommended way
Greg Wardc392caa2000-04-11 02:00:26 +0000672to do this is to supply relative paths; for example, if you want to
673maintain all Python module-related files under \file{python} in your
674home directory, and you want a separate directory for each platform that
675you use your home directory from, you might define the following
Greg Ward29576562000-03-18 15:11:50 +0000676installation scheme:
Fred Drakea9a83e92001-03-01 18:37:52 +0000677
Greg Ward29576562000-03-18 15:11:50 +0000678\begin{verbatim}
Greg Wardc392caa2000-04-11 02:00:26 +0000679python setup.py install --home=~ \
Greg Ward29576562000-03-18 15:11:50 +0000680 --install-purelib=python/lib \
681 --install-platlib=python/lib.$PLAT \
682 --install-scripts=python/scripts
683 --install-data=python/data
684\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000685% $ % -- bow to font-lock
686
Greg Ward29576562000-03-18 15:11:50 +0000687or, equivalently,
Fred Drakea9a83e92001-03-01 18:37:52 +0000688
Greg Ward29576562000-03-18 15:11:50 +0000689\begin{verbatim}
690python setup.py install --home=~/python \
691 --install-purelib=lib \
Greg Ward19c67f82000-06-24 01:33:16 +0000692 --install-platlib='lib.$PLAT' \
Greg Ward29576562000-03-18 15:11:50 +0000693 --install-scripts=scripts
694 --install-data=data
695\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000696% $ % -- bow to font-lock
697
Greg Ward29576562000-03-18 15:11:50 +0000698\code{\$PLAT} is not (necessarily) an environment variable---it will be
699expanded by the Distutils as it parses your command line options (just
700as it does when parsing your configuration file(s)).
701
702Obviously, specifying the entire installation scheme every time you
703install a new module distribution would be very tedious. Thus, you can
704put these options into your Distutils config file (see
Greg Warde78298a2000-04-28 17:12:24 +0000705section~\ref{config-files}):
Fred Drakea9a83e92001-03-01 18:37:52 +0000706
Greg Ward169f91b2000-03-10 01:57:51 +0000707\begin{verbatim}
708[install]
Greg Ward29576562000-03-18 15:11:50 +0000709install-base=$HOME
710install-purelib=python/lib
711install-platlib=python/lib.$PLAT
712install-scripts=python/scripts
713install-data=python/data
Greg Ward169f91b2000-03-10 01:57:51 +0000714\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000715
Greg Ward29576562000-03-18 15:11:50 +0000716or, equivalently,
Fred Drakea9a83e92001-03-01 18:37:52 +0000717
Greg Ward169f91b2000-03-10 01:57:51 +0000718\begin{verbatim}
719[install]
Greg Ward29576562000-03-18 15:11:50 +0000720install-base=$HOME/python
721install-purelib=lib
722install-platlib=lib.$PLAT
723install-scripts=scripts
724install-data=data
Greg Ward169f91b2000-03-10 01:57:51 +0000725\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000726
Greg Ward29576562000-03-18 15:11:50 +0000727Note that these two are \emph{not} equivalent if you supply a different
728installation base directory when you run the setup script. For example,
Fred Drakea9a83e92001-03-01 18:37:52 +0000729
Greg Ward7c1e5f62000-03-10 01:56:58 +0000730\begin{verbatim}
Greg Ward29576562000-03-18 15:11:50 +0000731python setup.py --install-base=/tmp
Greg Ward7c1e5f62000-03-10 01:56:58 +0000732\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000733
Greg Ward29576562000-03-18 15:11:50 +0000734would install pure modules to \filevar{/tmp/python/lib} in the first
735case, and to \filevar{/tmp/lib} in the second case. (For the second
736case, you probably want to supply an installation base of
737\file{/tmp/python}.)
Greg Ward169f91b2000-03-10 01:57:51 +0000738
Greg Ward29576562000-03-18 15:11:50 +0000739You probably noticed the use of \code{\$HOME} and \code{\$PLAT} in the
740sample configuration file input. These are Distutils configuration
741variables, which bear a strong resemblance to environment variables. In
Greg Wardc392caa2000-04-11 02:00:26 +0000742fact, you can use environment variables in config files---on platforms
743that have such a notion---but the Distutils additionally define a few
744extra variables that may not be in your environment, such as
745\code{\$PLAT}. (And of course, you can only use the configuration
746variables supplied by the Distutils on systems that don't have
Fred Drakeeff9a872000-10-26 16:41:03 +0000747environment variables, such as MacOS (\XXX{true?}).) See
Greg Warde78298a2000-04-28 17:12:24 +0000748section~\ref{config-files} for details.
Greg Ward7c1e5f62000-03-10 01:56:58 +0000749
Fred Drakeeff9a872000-10-26 16:41:03 +0000750\XXX{need some Windows and MacOS examples---when would custom
Greg Ward6002ffc2000-04-09 20:54:50 +0000751 installation schemes be needed on those platforms?}
Greg Ward7c1e5f62000-03-10 01:56:58 +0000752
Greg Ward7c1e5f62000-03-10 01:56:58 +0000753
Greg Ward6002ffc2000-04-09 20:54:50 +0000754\section{Distutils Configuration Files}
Greg Warde78298a2000-04-28 17:12:24 +0000755\label{config-files}
Greg Ward7c1e5f62000-03-10 01:56:58 +0000756
Greg Ward7ef2ba72000-10-22 01:40:08 +0000757As mentioned above, you can use Distutils configuration files to record
758personal or site preferences for any Distutils options. That is, any
759option to any command can be stored in one of two or three (depending on
760your platform) configuration files, which will be consulted before the
761command-line is parsed. This means that configuration files will
762override default values, and the command-line will in turn override
763configuration files. Furthermore, if multiple configuration files
764apply, values from ``earlier'' files are overridden by ``later'' files.
765
766
767\subsection{Location and names of config files}
Fred Drake0bbaa512001-01-24 16:39:35 +0000768\label{config-filenames}
Greg Ward7ef2ba72000-10-22 01:40:08 +0000769
770The names and locations of the configuration files vary slightly across
Fred Drakeeff9a872000-10-26 16:41:03 +0000771platforms. On \UNIX, the three configuration files (in the order they
Greg Ward7ef2ba72000-10-22 01:40:08 +0000772are processed) are:
773\begin{tableiii}{l|l|c}{textrm}
774 {Type of file}{Location and filename}{Notes}
775 \lineiii{system}{\filenq{\filevar{prefix}/lib/python\filevar{ver}/distutils/pydistutils.cfg}}{(1)}
776 \lineiii{personal}{\filenq{\$HOME/.pydistutils.cfg}}{(2)}
777 \lineiii{local}{\filenq{setup.cfg}}{(3)}
778\end{tableiii}
779
780On Windows, the configuration files are:
781\begin{tableiii}{l|l|c}{textrm}
782 {Type of file}{Location and filename}{Notes}
783 \lineiii{system}{\filenq{\filevar{prefix}\textbackslash{}Lib\textbackslash{}distutils\textbackslash{}pydistutils.cfg}}{(4)}
784 \lineiii{personal}{\filenq{\%HOME\textbackslash{}pydistutils.cfg}}{(5)}
785 \lineiii{local}{\filenq{setup.cfg}}{(3)}
786\end{tableiii}
787
Fred Drakeeff9a872000-10-26 16:41:03 +0000788And on MacOS, they are:
Greg Ward7ef2ba72000-10-22 01:40:08 +0000789\begin{tableiii}{l|l|c}{textrm}
790 {Type of file}{Location and filename}{Notes}
791 \lineiii{system}{\filenq{\filevar{prefix}:Lib:distutils:pydistutils.cfg}}{(6)}
792 \lineiii{personal}{N/A}{}
793 \lineiii{local}{\filenq{setup.cfg}}{(3)}
794\end{tableiii}
795
796\noindent Notes:
797\begin{description}
798\item[(1)] Strictly speaking, the system-wide configuration file lives
799 in the directory where the Distutils are installed; under Python 1.6
Fred Drakeeff9a872000-10-26 16:41:03 +0000800 and later on \UNIX, this is as shown. For Python 1.5.2, the Distutils
Greg Ward7ef2ba72000-10-22 01:40:08 +0000801 will normally be installed to
802 \file{\filevar{prefix}/lib/site-packages/python1.5/distutils},
803 so the system configuration file should be put there under Python
804 1.5.2.
Fred Drakeeff9a872000-10-26 16:41:03 +0000805\item[(2)] On \UNIX, if the \envvar{HOME} environment variable is not
Greg Ward7ef2ba72000-10-22 01:40:08 +0000806 defined, the user's home directory will be determined with the
807 \function{getpwuid()} function from the standard \module{pwd} module.
808\item[(3)] I.e., in the current directory (usually the location of the
809 setup script).
810\item[(4)] (See also note (1).) Under Python 1.6 and later, Python's
811 default ``installation prefix'' is \file{C:\textbackslash{}Python}, so
812 the system configuration file is normally
813 \file{C:\textbackslash{}Python\textbackslash{}Lib\textbackslash{}distutils\textbackslash{}pydistutils.cfg}.
814 Under Python 1.5.2, the default prefix was
815 \file{C:\textbackslash{}Program~Files\textbackslash{}Python}, and the
816 Distutils were not part of the standard library---so the system
817 configuration file would be
818 \file{C:\textbackslash{}Program~Files\textbackslash{}Python\textbackslash{}distutils\textbackslash{}pydistutils.cfg}
819 in a standard Python 1.5.2 installation under Windows.
820\item[(5)] On Windows, if the \envvar{HOME} environment variable is not
821 defined, no personal configuration file will be found or used. (In
822 other words, the Distutils make no attempt to guess your home
823 directory on Windows.)
824\item[(6)] (See also notes (1) and (4).) The default installation
825 prefix is just \file{Python:}, so under Python 1.6 and later this is
826 normally\file{Python:Lib:distutils:pydistutils.cfg}. (The Distutils
Fred Drakeeff9a872000-10-26 16:41:03 +0000827 don't work very well with Python 1.5.2 under MacOS. \XXX{true?})
Greg Ward7ef2ba72000-10-22 01:40:08 +0000828\end{description}
829
830
831\subsection{Syntax of config files}
Fred Drake0bbaa512001-01-24 16:39:35 +0000832\label{config-syntax}
Greg Ward7ef2ba72000-10-22 01:40:08 +0000833
834The Distutils configuration files all have the same syntax. The config
835files are grouped into sections; there is one section for each Distutils
836command, plus a \code{global} section for global options that affect
837every command. Each section consists of one option per line, specified
838like \code{option=value}.
839
840For example, the following is a complete config file that just forces
841all commands to run quietly by default:
Fred Drakea9a83e92001-03-01 18:37:52 +0000842
Greg Ward7ef2ba72000-10-22 01:40:08 +0000843\begin{verbatim}
844[global]
845verbose=0
846\end{verbatim}
847
848If this is installed as the system config file, it will affect all
849processing of any Python module distribution by any user on the current
850system. If it is installed as your personal config file (on systems
851that support them), it will affect only module distributions processed
852by you. And if it is used as the \file{setup.cfg} for a particular
853module distribution, it affects only that distribution.
854
855You could override the default ``build base'' directory and make the
856\command{build*} commands always forcibly rebuild all files with the
857following:
Fred Drakea9a83e92001-03-01 18:37:52 +0000858
Greg Ward7ef2ba72000-10-22 01:40:08 +0000859\begin{verbatim}
860[build]
861build-base=blib
862force=1
863\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000864
Greg Ward7ef2ba72000-10-22 01:40:08 +0000865which corresponds to the command-line arguments
Fred Drakea9a83e92001-03-01 18:37:52 +0000866
Greg Ward7ef2ba72000-10-22 01:40:08 +0000867\begin{verbatim}
868python setup.py build --build-base=blib --force
869\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000870
Greg Ward7ef2ba72000-10-22 01:40:08 +0000871except that including the \command{build} command on the command-line
872means that command will be run. Including a particular command in
873config files has no such implication; it only means that if the command
874is run, the options in the config file will apply. (Or if other
875commands that derive values from it are run, they will use the values in
876the config file.)
877
878You can find out the complete list of options for any command using the
879\longprogramopt{help} option, e.g.:
Fred Drakea9a83e92001-03-01 18:37:52 +0000880
Greg Ward7ef2ba72000-10-22 01:40:08 +0000881\begin{verbatim}
882python setup.py build --help
883\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000884
Greg Ward7ef2ba72000-10-22 01:40:08 +0000885and you can find out the complete list of global options by using
886\longprogramopt{help} without a command:
Fred Drakea9a83e92001-03-01 18:37:52 +0000887
Greg Ward7ef2ba72000-10-22 01:40:08 +0000888\begin{verbatim}
889python setup.py --help
890\end{verbatim}
Fred Drakea9a83e92001-03-01 18:37:52 +0000891
Greg Ward7ef2ba72000-10-22 01:40:08 +0000892See also the ``Reference'' section of the ``Distributing Python
893Modules'' manual.
894
Greg Ward6002ffc2000-04-09 20:54:50 +0000895
Fred Drakea9a83e92001-03-01 18:37:52 +0000896%\section{Pre-Distutils Conventions}
897%\label{pre-distutils}
Greg Ward6002ffc2000-04-09 20:54:50 +0000898
899
Fred Drakea9a83e92001-03-01 18:37:52 +0000900%\subsection{The Makefile.pre.in file}
901%\label{makefile-pre-in}
Greg Ward6002ffc2000-04-09 20:54:50 +0000902
903
Fred Drakea9a83e92001-03-01 18:37:52 +0000904%\subsection{Installing modules manually}
905%\label{manual-install}
Greg Ward6002ffc2000-04-09 20:54:50 +0000906
907
Greg Ward7c1e5f62000-03-10 01:56:58 +0000908\end{document}