Reputation: 4335
I have a problem with widgets' visualization and export in Jupyter lab. Basically, some widgets (e.g. the text) show their output in the log rather than in the console (see the image below).
Moreover, when I try to export them in HTML they don't appear at all (see the second image below).
I'm using the following versions:
Thanks in advance for your help.
Upvotes: 1
Views: 826
Reputation: 2068
Do this through Voilà
pip install voila
or
conda install voila -c conda-forge
And then:
voila path/to/your/notebook.ipynb
For more information and example:
Creating an Interactive Dashboard from Jupyter Notebook with Voila
Upvotes: 1