本文主要是介绍pandas读取文件时xlrd.biffh.XLRDError: Excel xlsx file; not supported, (可版本不回退),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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
这篇关于pandas读取文件时xlrd.biffh.XLRDError: Excel xlsx file; not supported, (可版本不回退)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!