pandas AttributeError: module 'numpy' has no attribute '__version__'
时间: 2023-11-19 09:04:52 浏览: 278
pandas read_excel()和to_excel()函数解析
出现"AttributeError: module 'numpy' has no attribute '__version__'"的错误通常是因为numpy版本过低导致的。解决这个问题的方法是升级numpy到最新版本。可以使用以下命令升级numpy:
```shell
pip install --upgrade numpy
```
如果你已经升级了numpy但仍然出现这个错误,那么可能是因为你的numpy安装出现了问题。可以尝试重新安装numpy来解决这个问题:
```shell
pip uninstall numpy
pip install numpy
```
阅读全文