利用pandas库读取excel表格时的报错问题

报错信息:
ImportError: Missing optional dependency ‘xlrd’. Install xlrd >= 1.0.0 for Excel support Use pip or conda to install xlrd.

经查找资料其实是缺失了xlrd这个模块,因此使用pip安装

pip install xlrd

因为以前pip安装经常超时,所以我都会加上一个镜像源

pip install xlrd -i https://pypi.tuna.tsinghua.edu.cn/simple/

显示`Successfully installed xlrd-1.2.0

就OK啦

再在jupyter里调用试试
利用pandas库读取excel表格时的报错问题_第1张图片

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