你提供的版本不对报错如下:清重新提供ImportError: this version of pandas is incompatible with numpy < 1.20.3 your numpy version is 1.19.5. Please upgrade numpy to >= 1.20.3 to use this pandas version
时间: 2024-04-16 12:28:31 浏览: 115
Mamba selective-scan-cuda-linux-gnu.so 用此编译好的文件进行替换即可
非常抱歉给你带来了困扰。根据报错信息,你需要升级你的numpy版本到1.20.3或更高版本才能与当前的pandas版本兼容。
你可以使用以下命令来升级numpy模块:
```
pip install --upgrade numpy
```
这将升级你的numpy模块到最新版本。完成后,重新运行你的代码,应该就不会再出现该报错了。
如果问题仍然存在,请确保你的环境中没有其他与numpy和pandas不兼容的第三方库。如果有,你可能需要更新或卸载相应的库以保持兼容性。
阅读全文