Can Python installation be as clean as PHP?

Fredrik Lundh fredrik at pythonware.com
Fri May 12 05:39:23 EDT 2006


Ravi Teja wrote:

> Python has zip imports (similar to Java's jar files). You can put all
> your *.py files in a zip file and access them from it if this means so
> much to you.

Python also supports "frozen" modules, where the module bytecode is
linked into a Python interpreter as data.  by combining frozen modules
and static linking of extension modules, it's relatively easy to create a
single-file python interpreter.

and to make things even simpler, you can get tools and ready-made
single-file distributions for a variety of platforms here:

    http://www.egenix.com/files/python/mxCGIPython.html
    http://phd.pp.ru/Software/Python/misc/mxCGI/

</F>






More information about the Python-list mailing list