簡體   English   中英

在 Jupyterlab 中讀取 Excel 文件和 xlrd 的 ImportError

[英]Reading an Excel file and ImportError for xlrd in Jupyterlab

類似的問題在這里肯定討論過很多,但似乎沒有完全解決,所以我想更新討論。

我最近開始 Python 並嘗試使用 Jupyterlab (2.2.9) 讀取 Excel 文件

import pandas as pd
sample_file = pd.read_excel("sample.xlsx")
sample_file.head()

然后我收到如下所述的錯誤。

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-8-cfbece5b87d5> in <module>
----> 1 sample_data = pd.read_excel("sample_data.xlsx")
      2 sample_data.head()

~/.pyenv/versions/3.8.2/lib/python3.8/site-packages/pandas/io/excel/_base.py in read_excel(io, sheet_name, header, names, index_col, usecols, squeeze, dtype, engine, converters, true_values, false_values, skiprows, nrows, na_values, keep_default_na, verbose, parse_dates, date_parser, thousands, comment, skipfooter, convert_float, mangle_dupe_cols, **kwds)
    302 
    303     if not isinstance(io, ExcelFile):
--> 304         io = ExcelFile(io, engine=engine)
    305     elif engine and engine != io.engine:
    306         raise ValueError(

~/.pyenv/versions/3.8.2/lib/python3.8/site-packages/pandas/io/excel/_base.py in __init__(self, io, engine)
    822         self._io = stringify_path(io)
    823 
--> 824         self._reader = self._engines[engine](self._io)
    825 
    826     def __fspath__(self):

~/.pyenv/versions/3.8.2/lib/python3.8/site-packages/pandas/io/excel/_xlrd.py in __init__(self, filepath_or_buffer)
     18         """
     19         err_msg = "Install xlrd >= 1.0.0 for Excel support"
---> 20         import_optional_dependency("xlrd", extra=err_msg)
     21         super().__init__(filepath_or_buffer)
     22 

~/.pyenv/versions/3.8.2/lib/python3.8/site-packages/pandas/compat/_optional.py in import_optional_dependency(name, extra, raise_on_missing, on_version)
     90     except ImportError:
     91         if raise_on_missing:
---> 92             raise ImportError(msg) from None
     93         else:
     94             return None

ImportError: Missing optional dependency 'xlrd'. Install xlrd >= 1.0.0 for Excel support Use pip or conda to install xlrd.

我用的是Anaconda,xlrd的版本已經是1.2.0了。 以防萬一我已經這樣做了

conda install xlrd

正如這里許多人所建議的那樣(我也嘗試用 pip 替換 conda)。 但是,仍然會發生相同的錯誤。 我完全迷路了。

import pandas as pd
sample_file = pd.read_excel("sample.xlsx")
sample_file.head()

嘗試這個

恐怕來自 pandas 的建議有點過時了。 你需要:

  1. conda install openpyxl
  2. 重新啟動 Jupyterlab。
  3. 將您的 pandas 代碼更改為pd.read_excel("sample.xlsx", engine='openpyxl')

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM