jupyter notebook中导入excel表报错——解决方案

1.导入excel表

df=pd.read_excel(r'E:\\a.xlsx')

2.运行出现以下错误

ImportError: Pandas requires version '3.0.7' or newer of 'openpyxl' (version '3.0.4' currently installed).

3.解决方案

pip install --upgrade xlrd

4.注意事项

1)在执行3解决方案的时候,可能第一次会出现下图所示的报错情况

jupyter notebook中导入excel表报错——解决方案_第1张图片

 2)出现1)的错误,只需再次执行pip install --upgrade xlrd,即可解决

jupyter notebook中导入excel表报错——解决方案_第2张图片


后期更改内容:

目前问题:

(1)按照上面的操作对xlrd进行了更新,但还是无法再jupyter notebook中导入excel表;

(2)同时将xlrd进行uninstall,又重新install,还是无法导入excel表;

【不知为何会出现无法导入excel表的情况】

解决方案:

重新卸载并再次安装anaconda,可以导入excel表。

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