Problems making Python-2.3b1

Martin v. Löwis martin at v.loewis.de
Sun Apr 27 04:14:41 EDT 2003


John Ochiltree <johnochiltree at blueyonder.co.uk> writes:

> Any ideas gratefully received.

It's a typo in setup.py. Replace

        if (tcllib is None or tklib is None and
            tcl_includes is None or tk_includes is None):
            # Something's missing, so give up
            return

with

        if (tcllib is None or tklib is None or
            tcl_includes is None or tk_includes is None):
            # Something's missing, so give up
            return

Alternatively, install the Tcl/Tk header files if you also want to
build Tkinter.

Please do report bugs at sf.net/projects/python in the future; a bug
report in comp.lang.python *will* get lost.

Regards,
Martin




More information about the Python-list mailing list