
To install Quixote, two steps are required. 
1) Install the compiler code from the Python 2.x distribution.
2) Install the quixote.* Python package.  


Installing the compiler code
============================

Python 2.0 contains a set of modules for parsing source code and
generating Python bytecode, and the PTL compiler is built on top of
it.

The compiler is available as part of the Python 2.0 distribution.
To install the compiler from the Python 2.0 distribution, run:

    cd Python-2.0/Tools/compiler
    python setup.py install


Installing the quixote package
==============================

Quixote is packaged using the Distutils, included with Python 2.0.

Simply run "python setup.py install".  The 'quixote' package and its
subpackages will be copied into the appropriate directory for
site-specific packages.



