1

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?

James Salmon
  • 205
  • 3
  • 6

1 Answers1

2

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
Lukas Würzburger
  • 6,543
  • 7
  • 41
  • 75
nailimp
  • 36
  • 4