我知道你会说这是重复的,但实际上并非如此。我得到错误:
Traceback (most recent call last):
File "calculator.py", line 1, in <module>
from tkinter import *
File "/usr/local/lib/python3.4/tkinter/__init__.py", line 38, in <module>
import _tkinter # If this fails your Python may not be configured for Tk
ImportError: No module named '_tkinter'
我已经完成了在每个网站上提供的所有错误和解决方案,包括我的这个
将我的操作系统更新到最新系统
安装了tkinter
安装了python-tk
安装了python3-tk
安装tk-dev
安装tcl
安装了所有,但我仍然得到错误。它让我疯了,我正在努力学习如何制作一个GUI,这样我的脚本对于那些无法找到命令行脚本的人来说会更有帮助。但是,如果我的练习脚本都不起作用,那么我什么都做不了。这是我要运行的脚本,如果你想看到的话。没什么特别的。
from tkinter import *
def iCalc(source, side):
storeObj = Frame(source, borderwidth=4, db=4, bg="red")
storeObj.pack(side=side, expand=YES, fill=BOTH)
return storeObj
def button(source, side, text, command=None):
storeObj = Button(source, text=text, command=command)
storeObj.pack(side=side, expand=YES, fill=BOTH)
class app(Frame):
def __init__(self):
Frame.__init__(self)
self.option_add('*Font', 'arial 20 bold')
self.pack(expand=YES, fill=BOTH)
self.master.title('Calculatorinator')
display = StringVar()
Entry(self, relief=RIDGE,
textvariable=display, justify='right', bd=30, bg="red").pack(side=TOP, expand=YES,
fill=BOTH)
for clearBut in (["CE"], ["C"]):
erase=iCalc(self, TOP)
for ichar in clearBut:
button(erase, LEFT,ichar,
lambda storeObj=display, q=ichar:storeObj.set(''))
for NumBut in ("789/", "456*", "123-", "0.+"):
FunctionNum = iCalc(self, TOP)
for char in NumBut:
button(FunctionNum, LEFT, char,
lambda storeObj=display, q=char: storeObj.set(storeObj.get() + q))
EqualsButton = iCalc(self, TOP)
for iEquals in "=":
if iEquals == '=':
btniEquals = button(EqualsButton, LEFT, iEquals)
btniEquals.bind('<ButtonRelease-1>',
lambda e, s=self, storeObj=display: s.calc(storeObj), '+')
else:
btniEquals = button(EqualsButton, LEFT, iEquals,
lambda storeObj=display, s=' %s '%iEquals: storeObj.set(storeObj.get()+s))
if __name__ == '__main__':
app().mainloop()
更新:现在它甚至不让我闲置:idle3.4
** IDLE can't import Tkinter.
Your Python may not be configured for Tk. **
答案 0 :(得分:2)
Python 2.7已标记,您使用的是哪个版本的Python。
在Python 2.7中,模块是Tkinter,它仅在Python 3中更改为tkinter。模块名称区分大小写。
尝试
From Tkinter import *
如果您使用的是Mac OS,可以使用tk
several issues以下是安装文档,非常有用:tk docs
从终端窗口,您应该能够运行Python shell: %/usr/local/bin/python3.4 这应该给你Python命令提示符。在提示符下,输入以下两个命令:
import tkinter
tkinter._test()
这会弹出一个小窗口;窗口顶部的第一行应该说
"This is Tcl/Tk version 8.5"; make sure it is not 8.4!
您还可以获得正在使用的Tcl / Tk的确切版本:
tkinter.Tcl().eval('info patchlevel')
应返回类似
的内容'8.5.18'.
Verified install using ActiveTcl 8.5.18.0 and Python 3.4.3 from python.org on Mac OS X 10.10.3.
答案 1 :(得分:2)
回溯的这一部分表示从 /usr/local/lib/python3.4
加载tkinterFile "/usr/local/lib/python3.4/tkinter/__init__.py", line 38, in <module>
import _tkinter # If this fails your Python may not be configured for Tk
即。 tkinter 已手动安装(不通过软件包管理器)到 /usr/local/lib/python3.4
但这表明你已经使用包管理器安装了python和tkinter。
将我的操作系统更新为已安装的最新系统安装的tkinter python-tk安装了python3-tk
我认为你可能必须删除安装到 /usr/local/lib/python3.4/tkinter 的tkinter,如果你还将tkinter安装为一个包(ubuntu包?),或者重命名目录并做一些测试。
答案 2 :(得分:1)
也许为时已晚,但......)
1)第5行:'bd'不是'db'
2)在'def button'中你没有返回storeObj
3)在'class app'中,所有循环'for'应该在' init '中。缩进
4)你的app没有属性'calc'
def calc(self, display):
try:
display.set(eval(display.get()))
except:
display.set('ERROR')