AttributeError: module 'config' has no attribute 'tesserct_address'
时间: 2023-11-16 13:06:44 浏览: 186
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误提示表明在Python代码中,尝试访问一个名为“tesserct_address”的属性,但是在“config”模块中找不到该属性。这可能是因为“config”模块中没有定义该属性,或者该属性被定义为私有属性,无法从外部访问。需要检查代码中是否正确导入了“config”模块,并且该模块中是否存在名为“tesserct_address”的属性。如果没有,需要添加该属性的定义。如果该属性是私有属性,则需要使用正确的方式访问该属性。
阅读全文