Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #24725 > unrolled thread

Re: how to use tkinter in python3.2?

Started byTerry Reedy <tjreedy@udel.edu>
First post2012-07-01 01:23 -0400
Last post2012-07-01 01:23 -0400
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: how to use tkinter in python3.2? Terry Reedy <tjreedy@udel.edu> - 2012-07-01 01:23 -0400

#24725 — Re: how to use tkinter in python3.2?

FromTerry Reedy <tjreedy@udel.edu>
Date2012-07-01 01:23 -0400
SubjectRe: how to use tkinter in python3.2?
Message-ID<mailman.1674.1341120219.4697.python-list@python.org>
On 7/1/2012 12:25 AM, contro opinion wrote:

I am on Windows, but...

> tiger@ocean:~$ python3.2
> Python 3.2.3 (default, Jul  1 2012, 11:07:14)
> [GCC 4.4.5] on linux2
> Type "help", "copyright", "credits" or "license" for more information.
>  >>> import tkinter
> Traceback (most recent call last):
>    File "<stdin>", line 1, in <module>
>    File "/usr/local/lib/python3.2/tkinter/__init__.py", line 39, in <module>
>      import _tkinter # If this fails your Python may not be configured
> for Tk
> ImportError: No module named _tkinter

_tkinter is the compiled C module that directly interfaces to tk. It is 
imported by the python module tkinter. For whatever reason, it was not 
compiled for your installation. Who did the compilation?

> i have installed  tk  ,how to use tkinker in python3.2?
>
> in my computer ,i can use tkinter in python3
> tiger@ocean:~$ python3
> Python 3.1.3 (r313:86834, Nov 28 2010, 11:28:10)
> [GCC 4.4.5] on linux2
> Type "help", "copyright", "credits" or "license" for more information.
>  >>> import tkinter

and who compiled that (correctly)?

-- 
Terry Jan Reedy


[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web