InstantMesh
InstantMesh copied to clipboard
(Windows) - Solution to app.py not opening gradio url
I found that "demo.launch(server_name="0.0.0.0", server_port=43839)" in app.py makes that when you open the url, it makes the app don't work, but there's a solution, changing "server_name" and "server_port":
Example:
demo.launch(server_name="127.0.0.1", server_port=7860)
Thanks for your solution!