Discussion:
strange thing that disturbs
tntsugar
2014-10-14 18:13:03 UTC
Permalink
hello guys,

for half an hour now i am searching for something simple...

not IRC, not Fakebook, not Twitter...

simply an email where i can ask a question to a problem i have in python
3.4.2 and the tkinter (it doesnt seem to be present and doesnt react to the
"python -m tkinter" -module not present-)...

can you please tell me where i can find help here... i would like to learn
python but... ????

greetings

G.

p.s. i dont use twitter, irc or fakebook...
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20141014/c640f80f/attachment.html>
Skip Montanaro
2014-10-14 18:32:36 UTC
Permalink
it doesnt seem to be present and doesnt react to the "python -m tkinter"
-module not present
I don't know how it's spelled in 3.4.x, but in 2.7 it's spelled "Tkinter".
Give that a try. (Sorry, no 3.4 install handy or I'd verify it myself.)

The other alternative is that the tkinter module wasn't built when you
installed Python because the build system couldn't find Tcl or Tk libraries
to link to. If that's the case, let us know your computing platform
(Windows, Linux/Unix, MacOSX) and how 3.4 was installed on your system.

Skip
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20141014/8b961403/attachment.html>
Skip Montanaro
2014-10-14 19:22:58 UTC
Permalink
Adding python-list back into the CC list. I know nothing about Windows.
Perhaps someone else here can help. (Sorry about the top post all you
bottom post mavens. It seemed warranted in this case...)

Skip
hi,
thank you so much for the quick reply!!!! :-D
i run win7 home premium...
during the installation of python 3.4.2 i have seen the tcl/tk option
activated!
the change between the T and t i tried but still the module wasnt found...
... ... ...
its strange... you know... i dealed with C, C++, and many other
programming languages and it was ALWAYS the same... never it was easy and
always there was a problem with the instalation or the editor... even
buying a book never it was like described in the book and i got stuck at a
point where the example in the book and the software didnt match... so that
happening noow isnt something new to me...
another question that you might be able to help me is if you can recommend
me a simple editor for writing python programs... right now i took IEP...
any tips?
be well and thank you!
GD
p.s. i only installed 3.4.2... thats enough right? or do i have to install
the 2.X version as well?
Post by Skip Montanaro
it doesnt seem to be present and doesnt react to the "python -m tkinter"
-module not present
I don't know how it's spelled in 3.4.x, but in 2.7 it's spelled
"Tkinter". Give that a try. (Sorry, no 3.4 install handy or I'd verify it
myself.)
The other alternative is that the tkinter module wasn't built when you
installed Python because the build system couldn't find Tcl or Tk libraries
to link to. If that's the case, let us know your computing platform
(Windows, Linux/Unix, MacOSX) and how 3.4 was installed on your system.
Skip
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20141014/0b316369/attachment.html>
Terry Reedy
2014-10-14 21:37:36 UTC
Permalink
i run win7 home premium.
during the installation of python 3.4.2 i have seen the tcl/tk
option activated!
Then python -m tkinter in Command Prompt should bring up a tk windows
with a bit a text and two buttons, one for exit. First try to find
Python 3.4 on the Start menu and start Python 3.4 (command .... Then
try import sys, then import tkinter. If this does not work, try
re-installing.

If you respond, do so to the list, not me.
--
Terry Jan Reedy
Loading...