numpy报错:AttributeError: module ‘numpy‘ has no attribute ‘float‘

报错:AttributeError: module 'numpy' has no attribute 'float'

 numpy官网:NumPy

报错原因:从numpy1.24起删除了numpy.bool、numpy.int、numpy.float、numpy.complex、numpy.object、numpy.str、numpy.long、numpy.unicode类型的支持。

numpy报错:AttributeError: module ‘numpy‘ has no attribute ‘float‘_第1张图片

解决办法

方法一:修改numpy版本
安装numpy1.24之前的版本

pip install numpy==1.23.5

方法二:修改代码

np.float替换为float或者np.float64/np.float32

但是,有很多第三方其他依赖包中无法修改代码,所以暂时最理想的方式是采用方法一。

你可能感兴趣的:(Python,numpy)