@@ -198,16 +198,13 @@ \subsection{Platform variations}
198198
199199On Mac~OS, ... \XXX {again, how do you run Python scripts on Mac~OS?}
200200
201- \XXX {arg, my lovely `` bslash'' macro doesn't work in non-tt fonts! help
202- me \LaTeX , you're my only hope...}
203-
204201
205202\subsection {Splitting the job up }
206203
207204Running \code {setup.py install} builds and installs all modules in one
208- fell swoop . If you prefer to work incrementally---especially useful if
209- you want to customize the build process, or if things are going
210- wrong---you can use the setup script to do one thing at a time. This is
205+ run . If you prefer to work incrementally---especially useful if you
206+ want to customize the build process, or if things are going wrong---you
207+ can use the setup script to do one thing at a time. This is
211208particularly helpful when the build and install will be done by
212209different users---e.g., you might want to build a module distribution
213210and hand it off to a system administrator for installation (or do it
@@ -220,11 +217,15 @@ \subsection{Splitting the job up}
220217python setup.py install
221218\end {verbatim }
222219(If you do this, you will notice that running the \command {install}
223- command first runs the \command {build} command, which quickly notices
224- that it has nothing to do, since everything in the \file {build}
225- directory is up-to-date.)
226-
227- \XXX {concrete reason for splitting things up?}
220+ command first runs the \command {build} command, which---in this
221+ case---quickly notices that it has nothing to do, since everything in
222+ the \file {build} directory is up-to-date.)
223+
224+ You may not need this ability to break things down often if all you do
225+ is install modules downloaded off the 'net, but it' s very handy for more
226+ advanced tasks. If you get into distributing your own Python modules
227+ and extensions, you'll run lots of individual Distutils commands on
228+ their own.
228229
229230
230231\subsection {How building works }
0 commit comments