还是报错AttributeError: module 'numpy' has no attribute 'kurtosis',该如何修改
时间: 2023-12-22 15:29:35 浏览: 122
根据提供的引用内容,你可以尝试以下两种解决方案来解决报错"AttributeError: module 'numpy' has no attribute 'kurtosis'":
解决方案一:重新安装numpy
```shell
pip uninstall numpy
pip install numpy==1.22
```
解决方案二:重新安装statsmodels
```shell
pip uninstall statsmodels
pip install statsmodels
```
请注意,这两种解决方案都是通过重新安装相关库来解决问题的。你可以先尝试解决方案一,如果问题仍然存在,再尝试解决方案二。
相关问题
升级了numpy库还是报错AttributeError: module 'numpy' has no attribute 'MachAr
根据提供的引用内容,出现AttributeError: module 'numpy' has no attribute 'MachAr'的原因可能是numpy库版本过低或者安装不完整。建议尝试升级numpy库到最新版本或者重新安装numpy库。如果问题仍然存在,可以尝试检查是否存在其他库与numpy库冲突,或者查看代码中是否有其他错误导致该报错。另外,如果在pycharm中执行出现问题,可以尝试在cmd命令行中执行相同的代码,以确定问题是否与pycharm有关。
AttributeError: module numpy has no attribute ndarray
引用中提到,由于版本的原因,有些类型名称在使用numpy时被弃用,导致出现AttributeError: module 'numpy' has no attribute 'ndarray'的错误。解决这个问题的方法是修改numpy的版本。可以先卸载当前的numpy,然后重新安装指定版本的numpy,例如使用pip uninstall numpy卸载当前版本,然后使用pip install numpy==1.22安装1.22版本的numpy。这样就可以解决AttributeError的问题。
阅读全文