pandas读取excel-xlrd相关

使用pandas读取excel时报错
ImportError: Missing optional dependency ‘xlrd’. Install xlrd >= 1.0.0 for Excel support Use pip or conda to install xlrd.
解决:缺少相关的xlrd依赖,安装依赖即可。pip install xlrd
此时安装的为最新版本xlrd-2.0.1的依赖,不支持读取xlsx格式的excel
pandas读取excel-xlrd相关_第1张图片
报错如下
pandas读取excel-xlrd相关_第2张图片
File “D:\develop\PycharmProjects\pyStudy\venv\lib\site-packages\xlrd_init_.py”, line 170, in open_workbook
raise XLRDError(FILE_FORMAT_DESCRIPTIONS[file_format]+‘; not supported’)
xlrd.biffh.XLRDError: Excel xlsx file; not supported
解决:

  • 卸载2.0.1版本的xlrd包

    pip uninstall xlrd==2.0.1

  • 安装1.2.0版本的xlrd包

    pip install xlrd==1.2.0
    pandas读取excel-xlrd相关_第3张图片

你可能感兴趣的:(python,python,pandas,开发语言)