由于本人安装Senta库后导致之后python导入pandas包时出现“numpy.ufunc size changed, may indicate binary incompatibility”错误。
具体报错:ValueError: numpy.ufunc size changed, may indicate binary incompatibility. Expected 216 from C header, got 192 from PyObject.
出现这种报错的直接原因是numpy与pandas版本不匹配。
三、解决方案- 网上许多方案都是让先卸载再重新安装numpy或升级numpy,但是重新安装或更新之后发现还是出现一样的错误。(这个方法不管用)
- 先卸掉已经安装的numpy库,然后再更新pandas库。(本人成功解决的方法)
pip uninstall numpy pip install pandas
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)