1234567891011121314151617181920212223242526 |
- import traceback
- import gradio as gr
- from tts_webui.utils.pip_install import pip_install_wrapper
- def generic_error_tab_advanced(e: Exception, name="", requirements=None):
- with gr.Tab(name + " (!)"):
- gr.Markdown(f"Failed to load {name} tab. Please check your configuration.")
- gr.Markdown(f"Error: {e}")
- gr.Markdown(f"Stacktrace: {traceback.format_exc()}")
- print(f"Failed to load {name} tab. Please check your configuration.")
- print(f"Error: {e}")
- print(f"Stacktrace: {traceback.format_exc()}")
- if requirements:
- gr.Markdown(f"Please install the {requirements} file")
- gr.Markdown("Please check the console for more information")
- install_btn = gr.Button(f"Install {name}")
- gr.Markdown("Installation console:")
- console_text = gr.HTML()
- install_btn.click(
- pip_install_wrapper(requirements, name),
- outputs=[console_text],
- )
|