Win32Installer.README Win32Installer is a set of utilities for creating installation packages and quasi-standalone python executables for Win32. No compiler is required. Win32Installer steals from freeze, Christian Tismer's sqfreeze, and Greg Stein's imputils.py. It will detect TK usage, and automatically install the necessary files. It can run console apps or pure GUIs. It can create a single-file self-extracting installation package. It can also create quasi-standalone executables. These are not single file; but everything exists in one directory tree with no dependencies outside that tree, and no registry dependencies. So uninstalling consists of deleting the directory tree, and it shouldn't get messed up by other versions of python or TCL/TK installed on the user's machine. It also creates the smallest possible distributions - Python modules are distributed as compressed archives (no source) and imported directly from the archive. For example, Python/Lib (excluding the test package) fits in a 475K Python_lib.pyz file. Win32Installer works with Python 1.5.2. It will not work with Python 1.5.1 or earlier, mostly because of the fact that in 1.5.2, zlib.pyd is statically linked to zlib, while in 1.5.1 it was dynamically linked. Files: Installer_r_01.exe Contact: gmcm@hypernet.com Copyright McMillan Enterprises; licensed on the "who cares" model. Gordon McMillan.