AttributeError: module 'tk' has no attribute 'Tk'

AttributeError: module 'tk' has no attribute 'Tk'

pip install tkinter 似乎已重命名为 pip install tk。但是当我尝试 运行 它时,会发生这种情况:

AttributeError: module 'tk' has no attribute 'Tk'

这是我的代码:

import tk 
from tk import *

base = Tk()
## base = tk.Tk() does not work as well

此外,我的目录中没有名为 tkintertk 的文件,并且在 Tkinter 页面上也没有提及更改。有人遇到同样的问题吗?

感谢任何帮助。提前致谢。

你混淆了两个不同的东西 tkinter built-in module and tk external module,第二个是 TensorKit 是介于 Python 和 C++ 之间的深度学习助手。 你应该做

from tkinter import *
base = Tk()

如果您想了解更多信息,请查阅链接文档