Re: [Image-SIG] PIL installation error

2009-11-11 Thread Fredrik Lundh
Your Python installation includes Tkinter but your Tcl/Tk installation is incomplete; you either have to install the relevant Tcl/Tk development packages, or tweak setup.py to disable Tkinter support. /F On Wed, Nov 11, 2009 at 1:32 PM, Irena Efremenko irena.efreme...@weizmann.ac.il wrote: Hi,

Re: [Image-SIG] PIL installation error

2009-11-11 Thread Tim Hatch
I get the following error messages trying to install PIL: ... _imagingtk.c:20:16: error: tk.h: No such file or directory Looks like you have _tkinter available but it can't find your tk.h. Assuming you have the tcl headers, adjust TCL_ROOT in setup.py appropriately. Tim