【bug】XLRDError: Excel xlsx file; not supported

今天儿童节,记录一个bug。

楼主写的一套代码是在公司的台式机上,今天需要下基层,就把项目代码拷贝到U盘,然后在基层用笔记本运行代码的时候出现:

raise ImportError(msg) from None
ImportError: Missing optional dependency 'xlrd'. Install xlrd >= 1.0.0 for Excel support Use pip or conda to install xlrd.

其实出现这个报错的时候,我就很惊讶。。。因为之前在笔记本上运行过类似的代码(相同环境下),今天怎么就不行了。

根据提示,安装了xlrd

pip install xlrd

然后,再运行代码出现:

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

楼主表示很无奈。。。

解决办法:

出错的语句:

data = pd.read_excel('www.xlsx', sheet_name='C1')

在后面加engine=‘openpyxl’,解决问题

data = pd.read_excel('www.xlsx', sheet_name='C1',engine='openpyxl')

大总结:

原因是pip安装的是最新的xlrd包,只支持.xls文件。所以pd.read_excel(‘xxx.xlsx’)会报错

解决方法1: 安装旧版xlrd

pip uninstall xlrd

pip install xlrd==1.2.0

解决方案2: 使用openpyxl包

pd.read_excel(‘xxx.xlsx’, engine=‘openpyxl’)

友情提醒:
代码移植(运行)时,一定要配置相同的环境,python版本,相应依赖库的版本。

参考:
https://blog.csdn.net/m0_67457639/article/details/123746623
https://www.jianshu.com/p/ee893ecae0f5

你可能感兴趣的:(Bug修复&解决方案,bug,python,开发语言)