@@ -48,7 +48,7 @@ \section{Introduction}
4848
4949In the past, there has been little support for adding third-party
5050modules to an existing Python installation. With the introduction of
51- the Python Distribution Utilities (Distutils for short) in Python 1.6 ,
51+ the Python Distribution Utilities (Distutils for short) in Python 2.0 ,
5252this is starting to change. Not everything will change overnight,
5353though, so while this document concentrates on installing module
5454distributions that use the Distutils, we will also spend some time
@@ -62,7 +62,7 @@ \section{Introduction}
6262brief forays into using Python's interactive mode to explore your
6363installation, but that's it. If you're looking for information on how
6464to distribute your own Python modules so that others may use them, see
65- the `` Distributing Python Modules'' manual.
65+ the \citetitle [../dist/dist.html]{ Distributing Python Modules } manual.
6666
6767
6868\subsection {Best case: trivial installation }
@@ -274,12 +274,12 @@ \subsection{How installation works}
274274\begin {tableiv }{l|l|l|c}{textrm}%
275275 {Platform}{Standard installation location}{Default value}{Notes}
276276 \lineiv {Unix (pure)}
277- {\filenq {\filevar {prefix}/lib/python1.6 /site-packages}}
278- {\filenq {/usr/local/lib/python1.6 /site-packages}}
277+ {\filenq {\filevar {prefix}/lib/python2.0 /site-packages}}
278+ {\filenq {/usr/local/lib/python2.0 /site-packages}}
279279 {(1)}
280280 \lineiv {Unix (non-pure)}
281- {\filenq {\filevar {exec-prefix}/lib/python1.6 /site-packages}}
282- {\filenq {/usr/local/lib/python1.6 /site-packages}}
281+ {\filenq {\filevar {exec-prefix}/lib/python2.0 /site-packages}}
282+ {\filenq {/usr/local/lib/python2.0 /site-packages}}
283283 {(1)}
284284 \lineiv {Windows}
285285 {\filenq {\filevar {prefix}}}
@@ -314,11 +314,12 @@ \subsection{How installation works}
314314installation uses for \filevar {prefix} and \filevar {exec-prefix} by
315315running Python in interactive mode and typing a few simple commands.
316316Under Unix, just type \code {python} at the shell prompt; under Windows,
317- run `` Python 1.6 (interpreter)'' \XXX {right?}; under Mac~OS, \XXX {???}.
318- Once the interpreter is started, you type Python code at the \code {>>>}
319- prompt. For example, on my Linux system, I type the three Python
320- statements shown below, and get the output as shown, to find out my
321- \filevar {prefix} and \filevar {exec-prefix}:
317+ run `` Python 2.0 (interpreter)'' \XXX {right?}; under Mac~OS, \XXX {???}.
318+ Once the interpreter is started, you type Python code at the
319+ \samp {>>> } prompt. For example, on my Linux system, I type the three
320+ Python statements shown below, and get the output as shown, to find
321+ out my \filevar {prefix} and \filevar {exec-prefix}:
322+
322323\begin {verbatim }
323324Python 1.5.2 (#1, Apr 18 1999, 16:03:16) [GCC pgcc-2.91.60 19981201 (egcs-1.1.1 on linux2
324325Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
0 commit comments