Run Web app with Bokeh plots in an offline mode? Where to dl Required Bokeh files

For anyone who stumbles upon this question, there is now a convenient way to load the Bokeh JS and CSS files inline instead of via CDN. This can be done by setting the mode argument to inline in the io.output_file function:

output_file('plot.html', title='Bokeh Plot', autosave=False, mode='inline', root_dir=None)

Yes - you should be able to download the js and css files from the cdn (using wget or similar) into static/js and static/css files. Then you just have to change the href/src paths to your local directories to load the statics.