[已解决]AttributeError: module ‘numpy‘ has no attribute ‘float‘

1、问题: AttributeError: module 'numpy' has no attribute 'float'

`np.float` was a deprecated alias for the builtin `float`. To avoid this error in existing code, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.

The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations

2、解决方法[参考]

conda list

降低numpy 版本:

python 复制代码
pip uninstall numpy
pip install numpy==1.23.5
相关推荐
子晓聊技术3 天前
【Python技术】同花顺wencai涨停分析基础上增加连板分析
后端·python·numpy
西猫雷婶6 天前
python学opencv|读取图像(九)用numpy创建黑白相间灰度图
python·opencv·numpy
星霜旅人7 天前
Python的基础知识
开发语言·python·numpy
fmc1211048 天前
【3】数据分析基础(Numpy的计算)
数据挖掘·数据分析·numpy
HP-Patience9 天前
【NumPy进阶】:内存视图、性能优化与高级线性代数
python·numpy
sinat_3842410911 天前
Python程序是一个基于Tkinter的GUI应用程序,用于录制和回放用户的鼠标和键盘操作
python·django·flask·beautifulsoup·numpy·scikit-learn
yivifu11 天前
利用cnocr库完成中文扫描pdf文件的文字识别
python·pdf·numpy·pymupdf·cnocr
joke_xiaoli12 天前
pycharm报错
python·机器学习·pycharm·numpy
fmc12110414 天前
【2】数据分析基础(关于Numpy 的基础 1)
数据挖掘·数据分析·numpy
西猫雷婶14 天前
python学opencv|读取图像(五)读取灰度图像像素
人工智能·python·opencv·计算机视觉·numpy