Bokeh used to work fine for me. It just stopped working this week. I get the same behavior on FireFox and Chrome on my mac. Here's an example of the problem. This is my jupyter code:
import pandas as pd
import datetime
import matplotlib.pyplot as plt
import itertools as itt
import bokeh.plotting as bk
bk.output_notebook()
xs = [0,1,2,3,4,5]
ys = [x**2 for x in xs]
p = bk.figure()
p.line(xs, ys, line_width=2)
p.circle(xs,ys)
bk.show(p)
The only output is "Loading BokehJS ..."
0.12.4on all those browsers on OSX, and it worked perfectly fine. It is literally impossible to help with platform specific problems like this, in any way, without complete information: what OS version are you on? what version of bokeh are you using? what versions of the browsers? What version of jupyter notebook?