Plot a local image using bokeh image_url by running python with the -m option
问题 I have to run a bokeh script as a module using the -m option from the top directory, because it needs to import some other portable module under the same directory python -m bokeh_module.bokeh_sub_module The directory tree is shown below. By running the above command, it doesn't show the image no matter where the png file is placed, is there a way to resolved the issue? Thank you for any help. . ├── other_module │ ├── __init__.py │ └── other_sub_module.py ├── bokeh_module │ ├── __init__.py │