Bokeh 2.3.3 -
Bokeh 2.3.3 automatically tries to load BokehJS (the client-side library) from a CDN. If you're working in an air-gapped or offline environment, you can download the BokehJS static files separately and serve them locally.
columns = [ TableColumn(field="date", title="Date", formatter="datetime"), TableColumn(field="price", title="Price ($)"), TableColumn(field="volume", title="Volume") ] data_table = DataTable(source=source, columns=columns, width=400, height=400) bokeh 2.3.3
Release Date: July 9, 2021
Type: Patch Release
Previous Version: 2.3.2
Next Version: 2.3.4 Bokeh 2
import bokeh
print(bokeh.__version__)
# Output: 2.3.3