aboutsummaryrefslogtreecommitdiffstats
path: root/launch.py
diff options
context:
space:
mode:
Diffstat (limited to 'launch.py')
-rw-r--r--launch.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/launch.py b/launch.py
index ad9ddd5a..3f4dc870 100644
--- a/launch.py
+++ b/launch.py
@@ -233,11 +233,11 @@ def prepare_enviroment():
os.makedirs(dir_repos, exist_ok=True)
- git_clone(stable_diffusion_repo, repo_dir('stable-diffusion-stability-ai'), "Stable Diffusion", stable_diffusion_commit_hash)
- git_clone(taming_transformers_repo, repo_dir('taming-transformers'), "Taming Transformers", taming_transformers_commit_hash)
- git_clone(k_diffusion_repo, repo_dir('k-diffusion'), "K-diffusion", k_diffusion_commit_hash)
- git_clone(codeformer_repo, repo_dir('CodeFormer'), "CodeFormer", codeformer_commit_hash)
- git_clone(blip_repo, repo_dir('BLIP'), "BLIP", blip_commit_hash)
+ git_clone(stable_diffusion_repo, repo_dir('stable-diffusion-stability-ai'), "Stable Diffusion", )
+ git_clone(taming_transformers_repo, repo_dir('taming-transformers'), "Taming Transformers", )
+ git_clone(k_diffusion_repo, repo_dir('k-diffusion'), "K-diffusion", )
+ git_clone(codeformer_repo, repo_dir('CodeFormer'), "CodeFormer", )
+ git_clone(blip_repo, repo_dir('BLIP'), "BLIP", )
if not is_installed("lpips"):
run_pip(f"install -r {os.path.join(repo_dir('CodeFormer'), 'requirements.txt')}", "requirements for CodeFormer")