abidlabs HF staff commited on
Commit
95a2926
·
1 Parent(s): 3020db2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -1,4 +1,6 @@
1
- import gradio as gr
 
2
 
 
3
 
4
  gr.Interface.load("spaces/nateraw/quickdraw", live=True, theme="default", description="Draw a commonly-found object (e.g. a pencil or a car), and this demo will try to guess what you drew!").launch()
 
1
+ import os
2
+ os.system("pip install gradio --upgrade")
3
 
4
+ import gradio as gr
5
 
6
  gr.Interface.load("spaces/nateraw/quickdraw", live=True, theme="default", description="Draw a commonly-found object (e.g. a pencil or a car), and this demo will try to guess what you drew!").launch()