Re: "tkinter module not found" please help

2007-01-09 Thread Asper Faner
[EMAIL PROTECTED] wrote: > I'm trying to install python2.5 on my computer(os Fedora 5). My problem > is that I'm unable to get the tkinter module loaded into python. I've > tried the solution here:"wiki.python.org/moin/TkInter" but am unsure as > how to modify my setup.py script. I have installed

Re: Tkinter module not found

2006-08-11 Thread Philippe Martin
Shuaib wrote: > Hey, > > Even though I freshly installed Tcl and Tk, python still seem to have > problems accessing Tkinter module. Here is what says when I do "import > Tkinter" > > == > Traceback (most recent call last): > File "", line 1, in ? > ImportError: No module named Tkinter > == >

Re: Tkinter module not found

2006-08-11 Thread Shuaib
Well, I finally solved my problem. I just had to reinstall python with the USE flags of tcl and tk. #USE="tcl tk" emerge python And now I can use Tkinter Thanks guys! -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter module not found

2006-08-08 Thread Dan
Shuaib wrote: > Hey again, > > I am using the latest python available on my system (2.4). So I don't > think that's the problem. > > Any more ideas? Do I need to install Tkinter as a seperate > module/package? As I said, I've already installed Tcl/Tk, though. This is a wild guess, but I just ins

Re: Tkinter module not found

2006-08-08 Thread John Salerno
Thomas Heller wrote: > c:\>which python > c:\util\python.EXE which didn't work for me on the command prompt...is it native to it? -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter module not found

2006-08-08 Thread John Salerno
Shuaib wrote: > Hey again, > > I am using the latest python available on my system (2.4). So I don't > think that's the problem. > > Any more ideas? Do I need to install Tkinter as a seperate > module/package? As I said, I've already installed Tcl/Tk, though. Hmm, yes, I think tkinter is separat

Re: Tkinter module not found

2006-08-08 Thread Thomas Heller
John Salerno schrieb: > Tim Chase wrote: >>> The cause of this is usually that you are using a different >>> version of Python than the one you installed Tkinter into, but >>> being a Linux newbie I have yet to discover how to redirect >>> the 'python' command to invoke the newer version of Python.

Re: Tkinter module not found

2006-08-08 Thread Shuaib
Hey again, I am using the latest python available on my system (2.4). So I don't think that's the problem. Any more ideas? Do I need to install Tkinter as a seperate module/package? As I said, I've already installed Tcl/Tk, though. Thanks for your time. Tim Chase wrote: > > The cause of this i

Re: Tkinter module not found

2006-08-08 Thread John Salerno
Tim Chase wrote: >> The cause of this is usually that you are using a different >> version of Python than the one you installed Tkinter into, but >> being a Linux newbie I have yet to discover how to redirect >> the 'python' command to invoke the newer version of Python. > > > The OS looks for th

Re: Tkinter module not found

2006-08-08 Thread Tim Chase
> The cause of this is usually that you are using a different > version of Python than the one you installed Tkinter into, but > being a Linux newbie I have yet to discover how to redirect > the 'python' command to invoke the newer version of Python. The OS looks for the first 'python' it finds i

Re: Tkinter module not found

2006-08-08 Thread John Salerno
Shuaib wrote: > Hey, > > Even though I freshly installed Tcl and Tk, python still seem to have > problems accessing Tkinter module. Here is what says when I do "import > Tkinter" > > == > Traceback (most recent call last): > File "", line 1, in ? > ImportError: No module named Tkinter > == > >