bokeh serve running but can't access with browser
问题 I have installed bokeh and downloaded myapp.py from the official page (http://docs.bokeh.org/en/latest/docs/user_guide/server.html) which looks like this. # myapp.py from random import random from bokeh.layouts import column from bokeh.models import Button from bokeh.palettes import RdYlBu3 from bokeh.plotting import figure, curdoc # create a plot and style its properties p = figure(x_range=(0, 100), y_range=(0, 100), toolbar_location=None) p.border_fill_color = 'black' p.background_fill