Re: Py2App - Could not import Tkinter error from resulting app

2014-10-21 Thread Skip Montanaro
On Tue, Oct 21, 2014 at 8:20 AM, Noble Bell wrote: > I realized this problem shortly after I posted the question and tried to > go back to google groups and delete my post before anyone had seen it. In general, that won't work, as lots of people use email ( python-list@python.org) or Usenet (co

Re: Py2App - Could not import Tkinter error from resulting app

2014-10-21 Thread Noble Bell
On Monday, October 20, 2014 11:07:51 PM UTC-5, Terry Reedy wrote: > tkinter imports _tkinter > > _tkinter connects with tclx.dll and tkx.dll (x is variable) > > So one possibility is no accessible tcl/tx. I have no idea how py2app > > is supposed to handle this on your undisclosed system. >

Re: Py2App - Could not import Tkinter error from resulting app

2014-10-20 Thread Terry Reedy
On 10/20/2014 9:29 PM, Noble Bell wrote: I have just created a python 3.4 application and created the setup.py file and then created an app with py2app. When I ran the resulting application I get an error in the console telling me that it could not import tkinter. Any ideas on how to correct

Py2App - Could not import Tkinter error from resulting app

2014-10-20 Thread Noble Bell
I have just created a python 3.4 application and created the setup.py file and then created an app with py2app. When I ran the resulting application I get an error in the console telling me that it could not import tkinter. Any ideas on how to correct this? Did I do something wrong? -- https:/

Tkinter error

2010-05-27 Thread ipatrol6010
I run a program (important parts at http://paste.pocoo.org/show/219148/) and all I get is this error: warning: callback failed in WindowList : invalid command name ".45328424.windows" Why? P.S.: Please CC all replies to me, I don't watch the list -- http://mail.python.org/mailman/list

Re: Tkinter error

2007-05-28 Thread BartlebyScrivener
On May 28, 4:57 pm, Peter Otten <[EMAIL PROTECTED]> wrote: > >>> b1 = Button(win,text="One") > >>> b2 = Button(win,text="Two") That worked. Thank you. Rick -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter error

2007-05-28 Thread Peter Otten
BartlebyScrivener wrote: > Finally started trying to build a simple gui form for inserting text > data into a mysql db of quotations. > > I found this nice Tkinter tutorial, > > http://www.ibiblio.org/obp/py4fun/gui/tkPhone.html > > but midway I'm getting an error. > > from Tkinter import * >

Tkinter error

2007-05-28 Thread BartlebyScrivener
Finally started trying to build a simple gui form for inserting text data into a mysql db of quotations. I found this nice Tkinter tutorial, http://www.ibiblio.org/obp/py4fun/gui/tkPhone.html but midway I'm getting an error. from Tkinter import * >>> win = Tk() >>> f = Frame(win) >>> b1 = But