Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the easiest way to create a webapp from an interactive Jupyter Notebook?

I have a Jupyter Notebook that plots some data and lets the user interact with it via a slider.

What would be the easiest way to make a web app with a similar functionality? (reusing as much of the code...)

like image 924
oshi2016 Avatar asked Aug 10 '16 07:08

oshi2016


1 Answers

I believe the easiest way is to use voilà.

After installing you just have to run:

voila <path-to-notebook> <options>

And you will have a server running your notebook as a web app, with all the input code omitted.

like image 86
raphaelts Avatar answered Oct 10 '22 01:10

raphaelts