Reputation: 315
I'm building a GUI Python App using Kivy. Is it possible to connect a jupyter notebook to the running python interpreter to inspect objects?
For example, if my app is producing some Pandas dataframes, is it possible to work on/manipulate/visualize instances of those objects from Jupyter Notebook?
Upvotes: 4
Views: 3972
Reputation: 89
It was possible to use Kivy in Jupyter Notebook since Kivy version 1.3.0 using InteractiveLauncher
(see documentation). However, this has been deprecated since version 1.10.0.
Upvotes: 1