I\'m not sure if this is Flask specific, but when I run an app in dev mode (http://localhost:5000), I cannot access it from other machines on the network (with
http://localhost:5000
Add below lines to your project
if __name__ == '__main__': app.debug = True app.run(host = '0.0.0.0',port=5005)