[Zope3-checkins] SVN: Zope3/trunk/releases/ZopeX3/README.txt add instructions for installing from the source distribution on Windows

Fred L. Drake, Jr. fred at zope.com
Mon May 24 12:12:26 EDT 2004


Log message for revision 24930:
add instructions for installing from the source distribution on Windows


-=-
Modified: Zope3/trunk/releases/ZopeX3/README.txt
===================================================================
--- Zope3/trunk/releases/ZopeX3/README.txt	2004-05-24 15:48:39 UTC (rev 24929)
+++ Zope3/trunk/releases/ZopeX3/README.txt	2004-05-24 16:12:26 UTC (rev 24930)
@@ -16,7 +16,10 @@
 
 Zope X3 requires that Python 2.3.3 or newer be installed.
 
+Building the Zope X3 software requires a C compiler supported by the
+distutils.
 
+
 Building and installing the software
 ------------------------------------
 
@@ -82,7 +85,7 @@
   python2.3 install.py -q build
   python2.3 test.py -v
   Running UNIT tests at level 1
-  Running UNIT tests from /home/user/ZopeX3-3.0.0a1/build/lib.linux-i686-2.3
+  Running UNIT tests from /home/user/ZopeX3-3.0.0/build/lib.linux-i686-2.3
   [...lots of dots, one per test...]
   ----------------------------------------------------------------------
   Ran 4510 tests in 501.389s
@@ -105,9 +108,48 @@
 Windows
 ~~~~~~~
 
-XXX to be written
+Using the source distribution on Windows is possible, but is somewhat
+different from using the distribution on Unix.  You may want to using
+the Windows installer instead of the source distribution.  If you
+don't have a supported C compiler, you need to use the installer.
 
+In using the distribution on Windows, you will need to run Python
+directly several times with various command lines; you should be
+careful to use the same Python installation for each of these.  The
+default installation for Python 2.3.x on Windows places the Python
+interpreter at \Python23\python; this will be used in the examples,
+but you may need to use a different path to the interpreter if you
+installed Python in a non-default location.
 
+Build the Zope software by switching to the directory created by
+unpacking the source distribution, then running the command:
+
+  C:\ZopeX3-3.0.0> \Python23\python install.py -q build
+
+The unit tests for the Zope software can be run once this is complete.
+This is an optional step, and can take a while to complete.  The tests
+can be run using the command:
+
+  C:\ZopeX3-3.0.0> \Python23\python test.py -v
+  Running UNIT tests at level 1
+  Running UNIT tests from /home/user/ZopeX3-3.0.0/build/lib.linux-i686-2.3
+  [...lots of dots, one per test...]
+  ----------------------------------------------------------------------
+  Ran 4500 tests in 501.389s
+
+  OK
+
+The line before the final "OK" tells how many individual tests were
+run, and long it took to run them.  These numbers will vary based on
+release, operating system, and host platform.
+
+At this point, you can install the software using the command:
+
+  C:\ZopeX3-3.0.0> \Python23\python install.py -q install
+
+You now have a complete Zope X3 installation.
+
+
 Creating a Zope instance home
 -----------------------------
 




More information about the Zope3-Checkins mailing list