TypeError: read_excel() got an unexpected keyword argument 'encoding'怎么解决这个错误
时间: 2023-08-01 19:10:10 浏览: 4594
TypeError: Unexpected keyword argument passed to optimizer: learning_rate 解决方法
这个错误通常是因为你使用的 `pandas` 版本较低导致的。`read_excel()` 函数在旧版本的 `pandas` 中不支持 `encoding` 参数。
为了解决这个问题,你可以尝试更新 `pandas` 到最新版本。可以使用以下命令来更新 `pandas`:
```
pip install --upgrade pandas
```
如果你使用的是 Anaconda,可以使用以下命令更新 `pandas`:
```
conda update pandas
```
更新完成后,再次尝试运行代码,应该就能够成功读取 Excel 文件了。
阅读全文