This commit is contained in:
lvmin
2023-08-10 03:35:57 -07:00
parent e95b0e0c6c
commit 4fae967909
3 changed files with 116 additions and 2 deletions
+23 -1
View File
@@ -1,7 +1,11 @@
import os
import sys
import platform
from modules.launch_util import commit_hash, fooocus_tag
from modules.launch_util import commit_hash, fooocus_tag, is_installed, run, python, run_pip, repo_dir, git_clone
REINSTALL_ALL = True
def prepare_environment():
@@ -21,6 +25,24 @@ def prepare_environment():
print(f"Version: {tag}")
print(f"Commit hash: {commit}")
git_clone(comfy_repo, repo_dir('StabilityAI-official-comfyui'), "Inference Engine", comfy_commit_hash)
if REINSTALL_ALL or not is_installed("torch") or not is_installed("torchvision"):
run(f'"{python}" -m {torch_command}', "Installing torch and torchvision", "Couldn't install torch", live=True)
if REINSTALL_ALL or not is_installed("xformers"):
if platform.system() == "Windows":
if platform.python_version().startswith("3.10"):
run_pip(f"install -U -I --no-deps {xformers_package}", "xformers", live=True)
else:
print("Installation of xformers is not supported in this version of Python.")
print("You can also check this and build manually: https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Xformers#building-xformers-on-windows-by-duckness")
if not is_installed("xformers"):
exit(0)
elif platform.system() == "Linux":
run_pip(f"install -U -I --no-deps {xformers_package}", "xformers")
prepare_environment()