D-Tale can be run as script by adding subprocess=False to your dtale.show command. Here is an example script: import dtale import pandas as pd if __name__ == '__main__': dtale.show(pd.DataFrame([1,2,3,4,5]), subprocess=False) Jupyter Notebook Within any jupyter (ipython) note...