mtyrrell commited on
Commit
6bcdb09
1 Parent(s): e96c006

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -1,11 +1,14 @@
1
- import streamlit as st
2
- import os
3
 
 
4
  os.system("pip uninstall -y spaces")
5
  os.system('pip install spaces==0.17.0')
 
6
  os.system("pip uninstall -y pydantic")
 
 
7
  os.system('pip install pydantic==1.8.2 --use-deprecated=legacy-resolver')
8
 
 
9
  import re
10
  import json
11
  from dotenv import load_dotenv
 
 
 
1
 
2
+ import os
3
  os.system("pip uninstall -y spaces")
4
  os.system('pip install spaces==0.17.0')
5
+ os.system("pip uninstall -y gradio")
6
  os.system("pip uninstall -y pydantic")
7
+ os.system("pip uninstall -y typer")
8
+ os.system('pip install typer==0.4.0')
9
  os.system('pip install pydantic==1.8.2 --use-deprecated=legacy-resolver')
10
 
11
+ import streamlit as st
12
  import re
13
  import json
14
  from dotenv import load_dotenv