AttributeError: module 'tkinter' has no attribute 'Treeview'
时间: 2023-12-16 20:02:39 浏览: 235
AttributeError: module 'tensorflow.compat.v1' has no attribute '
针对您提供的问题,我分别给出以下回答:
1.关于AttributeError: module 'tensorflow.compat.v1' has no attribute 'contrib'的问题,这是因为TensorFlow 2.0版本中已经移除了contrib模块,所以在使用TensorFlow 2.0版本时,如果代码中使用了contrib模块,就会出现该错误。解决方法是将代码中的contrib模块替换为tf.compat.v1模块,例如将"from tensorflow.contrib.rnn import LSTMCell"替换为"from tensorflow.compat.v1.nn.rnn_cell import LSTMCell"。
2.关于初学tkinter库的使用,遇到module 'tkinter' has no attribute 'Tk'错误的问题,这是因为在Python 2.x版本中,Tkinter模块名为Tkinter,而在Python 3.x版本中,Tkinter模块名为tkinter。因此,如果您使用的是Python 3.x版本,请将代码中的"import tkinter"替换为"import Tkinter"。
3.关于AttributeError: module 'tkinter' has no attribute 'Treeview'的问题,这是因为Treeview是tkinter库中ttk模块中的一个类,如果您的代码中没有导入ttk模块,就会出现该错误。解决方法是在代码中添加"from tkinter import ttk"语句,导入ttk模块。
阅读全文