XLRDError: Excel xlsx file; not supported
Posted H3rmesk1t
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XLRDError: Excel xlsx file; not supported相关的知识,希望对你有一定的参考价值。
报错原因
xlrd版本的问题,现在安装的xlrd是2.0.1版本,不支持xlsx格式
解决方法
1、
卸载当前安装的xlrd --> pip uninstall xlrd
安装低版本的xlrd --> pip install xlrd==1.2.0
2、
用openpyxl代替xlrd打开.xlsx文件(推荐)
data = pd.read_excel('test.xlsx', engine='openpyxl')
openpyxl版本 --> 3.0.5
以上是关于XLRDError: Excel xlsx file; not supported的主要内容,如果未能解决你的问题,请参考以下文章
XLRDError: Excel xlsx file; not supported
python3 使用 xlrd 库操作 excel.xlsx 时,报错: xlrd.biffh.XLRDError: Excel xlsx file; not supported
python3 使用 xlrd 库操作 excel.xlsx 时,报错: xlrd.biffh.XLRDError: Excel xlsx file; not supported
读取xlsx文件错误:xlrd.biffh.XLRDError: Excel xlsx file; not supported