因为业务需要提供一个可持续性访问的链接,所以gradio提供的临时链接(share=True)不能用。
用下面的代码即可部署到服务器IP。
import gradio as grimport timedef test(x): time.sleep(4) return xiface = gr.Interface(test, "textbox", "textbox")iface.launch(server_name="0.0.0.0", server_port=1234)
注意:
- 在执行gradio时用screen挂后台。不要在vscode的terminal中启动。
- 如果遇到提交后出现422 error的情况,,可能是gradio版本问题,需要升级到3.36.1。
https://github.com/gradio-app/gradio/issues/4936 - 如果仍然无法访问,可能是需要开防火墙端口。
来源地址:https://blog.csdn.net/xyl295528322/article/details/131995889