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.
You just need to install
tabulate
like this: