Why My Bokeh Plots Doesn't Work On Github?
Solution 1:
I know this is old, but if someone comes across it in the future...
There are two possibilities:
GitHub does not support dynamic output that uses Javascript, custom CSS, etc.
http://blog.jupyter.org/2015/05/07/rendering-notebooks-on-github/
Second, because of security concerns, some features available on nbviewer will not be available on GitHub. For example, GitHub will not render any dynamic output display that uses JavaScript, custom CSS, and most custom HTML embedded in Markdown or in outputs. When this is the case, and GitHub cannot fully render your notebooks, you will see an icon that allows you to view the full notebook on nbviewer.
When you view the notebook locally, it is probably linked to an Ipython kernel, so Python is used to display the graphs. When you view it on GitHub, there is no Ipython kernel, so the graphs cannot be generated. Only simple static figures (such as matplotlib figures) will be seen in a static notebook.
Post a Comment for "Why My Bokeh Plots Doesn't Work On Github?"