简体   繁体   中英

Jupyter notebook can't find pyxlsb module

I'm trying to use the pyxlsb module in Jupyter Notebook but it comes up with:

ModuleNotFoundError: No module named 'pyxlsb'

for the line of code:

from pyxlsb import open_workbook as open_xlsb

Would anyone be able to tell me why, and ideally a fix for it please?

pyxlsb might not be installed in your ipython environment.

A) Try running the following code at the command line:

$ pip install pyxlsb

B) Run a bash commands in jupyter using %%bash magic

C) Use pip inside the notebook as follows:

!pip install pyxlsb

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM