AttributeError: module 'inspect' has no attribute 'ArgSpec'
时间: 2023-08-27 09:19:03 浏览: 104
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为 Python 解释器版本过低所导致的。inspect.ArgSpec 是在 Python 3 中引入的,如果你的 Python 版本太旧,就会导致此错误。请确保你的 Python 版本是 3.0 及以上,并且你的代码也是用 Python 3 编写的。如果你的 Python 版本已经是 3.0 及以上,但仍然遇到此错误,请尝试更新你的 Python 解释器或者检查你的代码是否有其他语法问题。
阅读全文