pandas 無法開啟 .xlsx 檔案

Galois發表於2020-12-28

最近 xlrd 更新到了 2.0.1 版本,只支援 .xls 檔案。
所以 pandas.read_excel('xxx.xlsx') 會報錯:

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

解決方案

降級 xlrd 版本:

$ pip uninstall xlrd
$ pip install xlrd==1.2.0

openpyxl 代替 xlrd 開啟 .xlsx 檔案也是一種方法:

df=pandas.read_excel(‘data.xlsx’,engine=‘openpyxl’)
本作品採用《CC 協議》,轉載必須註明作者和本文連結
不要試圖用百米衝刺的方法完成馬拉松比賽。

相關文章