Baptlem commited on
Commit
426fb9c
1 Parent(s): b40e824

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -13,6 +13,11 @@ import numpy as np
13
  import gradio as gr
14
  import os
15
 
 
 
 
 
 
16
  description = """
17
  Our project is to use diffusion model to change the texture of our robotic arm simulation.
18
 
 
13
  import gradio as gr
14
  import os
15
 
16
+
17
+ if gr.__version != "3.28.3":
18
+ os.system("pip uninstall -y gradio")
19
+ os.system("pip install gradio==3.28.3")
20
+
21
  description = """
22
  Our project is to use diffusion model to change the texture of our robotic arm simulation.
23