繁体   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