0

I am new at using jupyter notebook. I build a dashboard using jupyter and dash, then it give me link to open my project

  Dash is running on http://127.0.0.1:8050/

But I can't open that link and the browser said "This site cannot be reached 127.0.0.1 refusing to connect". I already change the 127.0.0.1 to my ip address, but still get the same error. When I open just my ip address it redirect me to localhost xampp. But, when I adding port after it, it gets the same error again. What configuration I can do to open that link ?

Thank You :)

Nadia
  • 73
  • 9

1 Answers1

1

You can use this code, which opens up a website and worked for me when I ran it:

from http.client import HTTPConnection, socket
import webbrowser

webbrowser.open('http://google.com')

I hope this is useful.

Rebecca Bibye
  • 190
  • 2
  • 18