jupyter出现AttributeError: module 'numpy' has no attribute 'object'.
时间: 2023-11-13 10:04:58 浏览: 171
AttributeError: module 'tensorflow.compat.v1' has no attribute '
当您在使用Jupyter时,出现“AttributeError: module 'numpy' has no attribute 'object'”的错误时,这通常是由于您的numpy版本过低导致的。您可以尝试重新安装numpy,或者升级到最新版本。如果您已经尝试了重新安装numpy但问题仍然存在,您可以尝试升级numpy版本。另外,您还可以检查您的代码是否使用了过时的numpy别名,如np.object,如果是,请将其替换为object。如果您使用的是conda环境,请确保您的环境中已经安装了numpy。如果问题仍然存在,请检查您的代码是否存在其他错误或依赖项问题。
阅读全文