Use image_url in a standalone bokeh server by running python with the -m option
问题 This is a follow up of my previous question. The structure of the files is shown below. I have to run the scripts using python -m bokeh_module.bokeh_sub_module from the top directory . ├── other_module │ ├── __init__.py │ └── other_sub_module.py ├── bokeh_module │ ├── __init__.py │ ├── image.png # not showing │ └── bokeh_sub_module.py └── image.png # not showing either The bokeh_sub_module.py is using the standalone bokeh server. However the image will not show no matter where it is placed.