ModuleNotFoundError: No module named 'tabulate'

2.5k Views Asked by At

I am using Jupyter notebook system. I have already installed tabulate using cmd as pip install tabulate. The requirements are also satisfied but still getting this error.

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-2-9a451b8ebc97> in <module>
      1 import glob
      2 import pandas as pd
----> 3 from tabulate import tabulate
      4 def print_helper():
      5         print()

ModuleNotFoundError: No module named 'tabulate'

Any help will be appreciated.

1

There are 1 best solutions below

0
On

You just need to install tabulate like this:

pip install tabulate