mtyrrell commited on
Commit
e603c6c
·
1 Parent(s): e13d78a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +32 -8
app.py CHANGED
@@ -1,13 +1,37 @@
1
 
 
2
  import os
3
- os.system("pip uninstall -y spaces")
4
- os.system('pip install spaces==0.12.0')
5
- os.system("pip uninstall -y gradio")
6
- os.system("pip uninstall -y inflect")
7
- os.system("pip uninstall -y pydantic")
8
- # os.system("pip uninstall -y typer")
9
- # os.system('pip install typer==0.4.0')
10
- os.system('pip install pydantic==1.8.2')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
  import streamlit as st
13
  import re
 
1
 
2
+
3
  import os
4
+ import pkg_resources
5
+
6
+ def is_installed(package_name, version):
7
+ try:
8
+ pkg = pkg_resources.get_distribution(package_name)
9
+ return pkg.version == version
10
+ except pkg_resources.DistributionNotFound:
11
+ return False
12
+
13
+ @st.cache_resource
14
+ def install_packages():
15
+ install_commands = []
16
+
17
+ if not is_installed("spaces", "0.12.0"):
18
+ install_commands.append("pip install spaces==0.12.0")
19
+
20
+ if not is_installed("pydantic", "1.8.2"):
21
+ install_commands.append("pip install pydantic==1.8.2")
22
+
23
+ if install_commands:
24
+ os.system(" && ".join(install_commands))
25
+
26
+ # Call the function to install packages if necessary
27
+ install_packages()
28
+
29
+ # os.system("pip uninstall -y spaces")
30
+ # os.system('pip install spaces==0.12.0')
31
+ # os.system("pip uninstall -y gradio")
32
+ # os.system("pip uninstall -y inflect")
33
+ # os.system("pip uninstall -y pydantic")
34
+ # os.system('pip install pydantic==1.8.2')
35
 
36
  import streamlit as st
37
  import re