Wendong-Fan commited on
Commit
4380868
·
verified ·
1 Parent(s): 8708147

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -1,6 +1,10 @@
1
  from apps.data_explorer.data_explorer import construct_blocks, parse_arguments
2
  from apps.data_explorer.downloader import download_data
3
 
 
 
 
 
4
  if __name__ == "__main__":
5
 
6
  download_data()
 
1
  from apps.data_explorer.data_explorer import construct_blocks, parse_arguments
2
  from apps.data_explorer.downloader import download_data
3
 
4
+ import os
5
+ os.system("pip uninstall -y gradio")
6
+ os.system("pip install gradio==3.50.2")
7
+
8
  if __name__ == "__main__":
9
 
10
  download_data()