Tkinter 3000 WCK Install Problem

2008-09-22 Thread garyr
I'm trying to install WCK. I downloaded and installed the Windows
executable for my Python version. It appeared to run OK. I then
downloaded the demo files but find that none run due to error:
ImportError: No module named _tk3draw.
I'm using ActivePython 2.3.5 on Windows XP Home.
What can I do to fix this problem?
--
http://mail.python.org/mailman/listinfo/python-list


Re: Tkinter 3000 WCK Install Problem

2008-09-22 Thread Fredrik Lundh

garyr wrote:


I'm trying to install WCK. I downloaded and installed the Windows
executable for my Python version. It appeared to run OK. I then
downloaded the demo files but find that none run due to error:
ImportError: No module named _tk3draw.
I'm using ActivePython 2.3.5 on Windows XP Home.
What can I do to fix this problem?


the error means that the interpreter cannot find the _tk3draw.pyd file.

if you use the standard install location, it should be installed under

C:\Python23\lib\site-packages

you could try this:

 import FixTk
 import _tk3draw
 _tk3draw.__file__
'C:\\Python23\\lib\\site-packages\\_tk3draw.pyd'

if this also gives you an error, search for _tk3draw.pyd on the disk.

/F

--
http://mail.python.org/mailman/listinfo/python-list