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

使用python的xlrd读取Excel文件时报错:

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

报错原因是xlrd版本的问题,现在直接pip install xlrd下载的是2.0.1版本的,将其卸载下载1.2.0的即可。

解决方法:

pip3 install xlrd==1.2.0

说明:

  • 如果你的电脑同时安装了py2和py3,直接使用pip install xlrd默认该包是指向py2的,如果你使用的是py3,则使用 pip3 install xlrd==1.2.0即可。

你可能感兴趣的:(PYTHON,Django,Bug,python,pip,excel)