I have a Bokeh Server running on my laptop, with a simple bokeh serve --show myprogram.py
and I want to be able to connect to the same server with a different device that is in the same network. For starters that would be my home network, but in the end it will be my university's network (Not sure if there is a difference).
I tried finding the IP of the laptop running the bokeh server and typing it in in my other device's browser together with the port and app name, like my_ip:5006/myprogram
, however my browsers tells me that there is no response from that server.
How can I view my server from different devices?
I tried reading through the documentation however it appears to me to only talk about access when the server is embedded on other websites.