Skip to content Skip to sidebar Skip to footer

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_

Solution 1:

image_url requires URLs, and neither of your calls to image_url use URLs.

Try to use absolute URLs and add file:// in front of them.

Post a Comment for "Plot A Local Image Using Bokeh Image_url By Running Python With The -m Option"