This extension adds a toggle on/off button to Jupyter Lab, that activates the rendering of Pandas DataFrames as interactive tables thanks to datatables.net. To install the extension, execute pip ...
The code used: from itables import init_notebook_mode import pandas as pd init_notebook_mode (all_interactive=True) data = pd.read_csv ('Example.csv') data Works fine in the jupyter notebook.