ERROR: Path for Bokeh server application does not exist: /home/superusr/Desktop/colaboratory_python/show

I have a python script file in this path ‘/home/superusr/Desktop/colaboratory_python/plot.py’ which successfully plots the required plot on notebook, but to make it interactive I want to use bokeh server
I tried running the script with following commands .(tried both)

bokeh serve -- show plot.py
python3 -m bokeh serve -- show plot.py

but both the commands give the following error

ERROR: Path for Bokeh server application does not exist: /home/superusr/Desktop/colaboratory_python/show

Please help me where I am doing wrong. A can I get guidelines for how to launch a bokeh server, how to use it

Thank you

Remove the -- from your command.

I’m get the same issue. I tried removing the double dash but still the same error.

Did you check bokeh info and see which python version it is tied to? My error is resolved after I switched the command to python3.

It is --show with no space between the -- and show (standard command line option syntax)