-
-
Notifications
You must be signed in to change notification settings - Fork 883
/
daisi_app.py
46 lines (42 loc) · 1.13 KB
/
daisi_app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import os, subprocess
import yaml
print(os.getcwd)
try:
with open("environment.yaml") as file_handle:
environment_data = yaml.safe_load(file_handle, Loader=yaml.FullLoader)
except FileNotFoundError:
try:
with open(os.path.join("..", "environment.yaml")) as file_handle:
environment_data = yaml.safe_load(file_handle, Loader=yaml.FullLoader)
except:
pass
try:
for dependency in environment_data["dependencies"]:
package_name, package_version = dependency.split("=")
os.system("pip install {}=={}".format(package_name, package_version))
except:
pass
try:
subprocess.run(
[
"python",
"-m",
"streamlit",
"run",
os.path.join("..", "scripts/webui_streamlit.py"),
"--theme.base dark",
],
stdout=subprocess.DEVNULL,
)
except FileExistsError:
subprocess.run(
[
"python",
"-m",
"streamlit",
"run",
"scripts/webui_streamlit.py",
"--theme.base dark",
],
stdout=subprocess.DEVNULL,
)