当前位置:   article > 正文

pandas读excel类型文件报错: xlrd.biffh.XLRDError: Excel xlsx file; not supported_pandas excel xlsx file; not supported

pandas excel xlsx file; not supported

一、问题

pandas 读取 Excel 文件(.xlsx)时报错如下:

raise XLRDError(FILE_FORMAT_DESCRIPTIONS[file_format]+'; not supported')
xlrd.biffh.XLRDError: Excel xlsx file; not supported

二、报错原因

xlrd 版本过低,只支持读取 .xls 文件

三、解决方案

1、方法一

先卸载低版本的 xlrd,然后安装新版本:

  1. pip uninstall xlrd
  2. pip install xlrd==1.2.0

或者使用 conda 卸载和安装:

  1. conda uninstall xlrd
  2. conda install xlrd=1.2.0

2、方法二

用 openpyxl 代替 xlrd 打开 .xlsx 文件:

df = pandas.read_excel(‘data.xlsx’,engine='openpyxl')

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/209725
推荐阅读
相关标签
  

闽ICP备14008679号