-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstall.py
More file actions
39 lines (32 loc) · 923 Bytes
/
install.py
File metadata and controls
39 lines (32 loc) · 923 Bytes
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
import sys
import subprocess
import logging
def install_requirements(force=False) -> None:
"""
Invoke pip to install the requirements for the extension.
"""
try:
from launch import args
if getattr(args, "skip_install", False):
logging.info(
"webui launch.args.skip_install is true, skipping dynamic javascript installation",
)
return
except ImportError:
pass
requirements_to_install = [
"selenium"
]
if not requirements_to_install:
return
command = [
sys.executable,
"-m",
"pip",
"install",
*requirements_to_install,
]
print(f"sd-dynamic-javascript installer: running {' '.join(command)}")
subprocess.check_call(command)
if __name__ == "__main__":
install_requirements(force=("-f" in sys.argv))