jojortz commited on
Commit
cafbdee
1 Parent(s): 7f26179

install poppler in app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -1,6 +1,9 @@
1
  import gradio as gr
2
  from tabs.arena_sxs import arena_sxs
3
  from tabs.leaderboard import leaderboard
 
 
 
4
 
5
  # Create the Gradio interface with tabs
6
  with gr.Blocks() as demo:
 
1
  import gradio as gr
2
  from tabs.arena_sxs import arena_sxs
3
  from tabs.leaderboard import leaderboard
4
+ import os
5
+
6
+ os.system("apt-get install poppler-utils")
7
 
8
  # Create the Gradio interface with tabs
9
  with gr.Blocks() as demo: