You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's why I suggested to change it to 127.0.0.1 (or localhost).
So that you can just click on the link in the CLI and do not have to manually type the address into your browser.
Row 391 in gradio_interface.py:
demo.launch(server_name="0.0.0.0", server_port=7860, share=share)
Fix:
demo.launch(server_name="127.0.0.1", server_port=7860, share=share)
The text was updated successfully, but these errors were encountered: