Python: Pandas pd.read_excel giving ImportError: Install xlrd >= 0.9.0 for Excel support

前端 未结 15 2137
太阳男子
太阳男子 2021-02-01 12:04

I am trying to read a .xlsx with pandas, but get the follwing error:

data = pd.read_excel(low_memory=False, io=\"DataAnalysis1/temp1.xlsx\").fillna(         


        
15条回答
  •  时光取名叫无心
    2021-02-01 12:25

    Was getting the error while I was using jupyter.

    ModuleNotFoundError: No module named 'xlrd'
    ...
    ImportError: Install xlrd >= 0.9.0 for Excel support
    

    it was resolved for me after using.

    !pip install xlrd
    

提交回复
热议问题