当前位置: 代码迷 >> 综合 >> pandas读取文件时xlrd.biffh.XLRDError: Excel xlsx file; not supported, (可版本不回退)
  详细解决方案

pandas读取文件时xlrd.biffh.XLRDError: Excel xlsx file; not supported, (可版本不回退)

热度:1   发布时间:2023-12-16 18:44:56.0

pandas读取文件时出现以下错误
xlrd.biffh.XLRDError: Excel xlsx file; not supported


方法一:

原因在于xlrd更新到了2.0.1版本,只支持.xls文件,所以只要将版本回退就好了
具体操作

pip uninstall xlrd
pip install xlrd==1.2.0 -i  https://pypi.douban.com/simple

安装完毕重新运行就好了

方法二:(推荐)

安装pyexcel-xls包

pip install pyexcel
  相关解决方案