美文网首页
【Python】报错:xlrd.biffh.XLRDError:

【Python】报错:xlrd.biffh.XLRDError:

作者: 失语失芯不失梦 | 来源:发表于2022-06-16 11:06 被阅读0次

不管使用 pandas 还是 xlrd,使用的时候都报错:xlrd.biffh.XLRDError: Excel xlsx file; not supported

是因为xlrd2.0.1版本不支持.xlsx文件的读取

查看当前安装的xlrd版本:pip show xlrd

解决方法:版本过高就降低xlrd的版本

1.pip uninstall xlrd 先卸载xlrd

2.pip install xlrd==1.2.0 安装低版本的xlrd

参考链接:https://blog.csdn.net/weixin_43890415/article/details/123110748

相关文章

网友评论

      本文标题:【Python】报错:xlrd.biffh.XLRDError:

      本文链接:https://www.haomeiwen.com/subject/ktxqvrtx.html