Python报错AttributeError: module 'numpy' has no attribute '_version_'
时间: 2023-12-01 18:04:00 浏览: 210
Python获取对象属性的几种方式小结
这个错误通常是由于使用了已经被弃用的numpy.int而导致的。解决方案如下:
1.重新安装numpy,将其降级到1.22版本:
```shell
pip uninstall numpy
pip install numpy==1.22
```
2.检查代码中是否使用了已经被弃用的numpy.int,如果是,则需要将其替换为其他数据类型。
阅读全文