-
Notifications
You must be signed in to change notification settings - Fork 32
/
install_comfyui.py
49 lines (34 loc) · 1.6 KB
/
install_comfyui.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
47
48
49
import os
import sys
default_install_location = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'ComfyUI')
def main(install_location, should_install_manager=False):
repo_url = 'https://github.com/comfyanonymous/ComfyUI.git'
install_repo(repo_url, install_location)
if should_install_manager:
manager_repo_url = 'https://github.com/ltdrdata/ComfyUI-Manager.git'
manager_location = manager_location_from_comfyui_location(install_location)
install_repo(manager_repo_url, manager_location)
def manager_location_from_comfyui_location(comfyui_location):
return os.path.join(comfyui_location, 'custom_nodes', 'ComfyUI-Manager')
def install_repo(git_repo_url, install_location):
import git
os.mkdir(install_location)
git.Repo.clone_from(git_repo_url, install_location)
def update(install_location):
print("[sd-webui-comfyui]", f"Updating comfyui at {install_location}...")
if not install_location.is_dir() or not any(install_location.iterdir()):
print("[sd-webui-comfyui]", f"Cannot update comfyui since it is not installed.", file=sys.stderr)
return
import git
repo = git.Repo(install_location)
current = repo.head.commit
repo.remotes.origin.pull()
if current == repo.head.commit:
print("[sd-webui-comfyui]", "Already up to date.")
else:
print("[sd-webui-comfyui]", "Done updating comfyui.")
if __name__ == '__main__':
install_location = default_install_location
if len(sys.argv) > 1:
inistall_location = sys.argv[1]
main(install_location)