module 'numpy' has no attribute 'int'. Did you mean: 'inf'?
时间: 2023-11-08 18:04:58 浏览: 261
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
module 'numpy' has no attribute 'int'报错的原因是在代码中使用了numpy.int而numpy模块中没有int这个属性。可能是因为numpy的版本问题导致的。你可以尝试重新安装numpy,并指定一个较低的版本(如1.22)来解决问题。另外,需要注意的是,numpy的数组可以使用shape属性来获取形状,而列表则不能。如果需要将列表转换为numpy数组,可以使用np.array(list A)的方法进行转换。
阅读全文