mirror of
https://github.com/Sygil-Dev/sygil-webui.git
synced 2024-12-13 17:33:31 +03:00
a9bc7eae19
for more information, see https://pre-commit.ci
47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
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,
|
|
)
|