AttributeError: module 'attr' has no attribute 's'
时间: 2023-10-05 19:12:07 浏览: 152
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为你在代码中使用了 `attr.s` 语法,但是 `attr` 模块中没有 `s` 这个属性。解决这个问题的方法是检查你的代码中是否正确导入了 `attr` 模块,并且确保你正在使用正确的属性和语法。
如果你确定你的代码中正确导入了 `attr` 模块,并且你仍然遇到这个错误,那么可能是因为你的 `attr` 模块版本过低或过高。尝试更新或降低 `attr` 模块的版本,看看是否能够解决问题。
阅读全文