Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #41447 > unrolled thread
| Started by | "Yves S. Garret" <yoursurrogategod@gmail.com> |
|---|---|
| First post | 2013-03-18 14:29 -0400 |
| Last post | 2013-03-18 14:29 -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.
Re: [Python 3.3.0] Getting tkinter to work on Python 3 "Yves S. Garret" <yoursurrogategod@gmail.com> - 2013-03-18 14:29 -0400
| From | "Yves S. Garret" <yoursurrogategod@gmail.com> |
|---|---|
| Date | 2013-03-18 14:29 -0400 |
| Subject | Re: [Python 3.3.0] Getting tkinter to work on Python 3 |
| Message-ID | <mailman.3466.1363631400.2939.python-list@python.org> |
[Multipart message — attachments visible in raw view] — view raw
I have. This is what I did and the result that I'm seeing.
$ sudo apt-get install python3-tk
[sudo] password for ysg:
Reading package lists... Done
Building dependency tree
Reading state information... Done
python3-tk is already the newest version.
python3-tk set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
$ python3
Python 3.3.0 (default, Mar 11 2013, 15:04:13)
[GCC 4.5.2] on linux
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.3/tkinter/__init__.py", line 40, in <module>
import _tkinter # If this fails your Python may not be configured for Tk
ImportError: No module named '_tkinter'
>>>
:-/
On Mon, Mar 18, 2013 at 2:22 PM, Ritchie Flick <xenplex@gmail.com> wrote:
> Seems tkinter is missing in standard installation in ubuntu. Try:
> sudo apt-get install python3-tk
>
>
> On Mon, Mar 18, 2013 at 6:17 PM, Yves S. Garret <
> yoursurrogategod@gmail.com> wrote:
>
>> Hi. I'm having a problem trying to get this to work well. Basically,
>> whenever I try to
>> import tkinter, this is the issue that I have:
>>
>> >>> import tkinter
>> Traceback (most recent call last):
>> File "<stdin>", line 1, in <module>
>> File "/usr/local/lib/python3.3/tkinter/__init__.py", line 40, in
>> <module>
>> import _tkinter # If this fails your Python may not be configured for
>> Tk
>> ImportError: No module named '_tkinter'
>>
>> I'm running Ubuntu. If I need to provide any further info, please let me
>> know.
>>
>> --
>> http://mail.python.org/mailman/listinfo/python-list
>>
>>
>
>
> --
> Ritchie Flick
>
Back to top | Article view | comp.lang.python
csiph-web