python办公包库xlrd 报错xlrd.biffh.XLRDError: Excel xlsx file; not supported

python-办公xlrd

xlrd.open_workbook打开xlsx文件

报错:
xlrd.biffh.XLRDError: Excel xlsx file; not supported

原因:
xlrd更新版本以后不支持这种使用

解决方式一:
xlrd不支持新版本。
解决方式:可安装旧版本。
在cmd命令行中运行:
pip uninstall xlrd
y
pip install xlrd==1.2.0

解决方式二:
用openpyxl代替xlrd打开.xlsx文件。
casedata=pd.read_excel(conf.conf().casePath,sheet_name=‘Sheet1’,engine=‘openpyxl’)

解决方式三:
pycharm的setting->python 解释器中安装固定版本xlrd-1.2.0

你可能感兴趣的:(python,bug,python)