aboutsummaryrefslogtreecommitdiff
path: root/launch.py
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2023-05-11 10:48:48 +0300
committerAarni Koskela <akx@iki.fi>2023-05-11 11:57:43 +0300
commita09e1e6e18e800191817493253dfc481a07b1868 (patch)
treeea71c1901c2a2499b5836ea2e3f4707394a8bb97 /launch.py
parent875bc270093b4f89b9d0d20a93a5e8ea514b3f6c (diff)
launch.py: Use GitHub archive URLs for gfpgan, clip, openclip instead of git clones
Diffstat (limited to 'launch.py')
-rw-r--r--launch.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/launch.py b/launch.py
index ae75f6fd..fed14d93 100644
--- a/launch.py
+++ b/launch.py
@@ -248,9 +248,9 @@ def prepare_environment():
requirements_file = os.environ.get('REQS_FILE', "requirements_versions.txt")
xformers_package = os.environ.get('XFORMERS_PACKAGE', 'xformers==0.0.17')
- gfpgan_package = os.environ.get('GFPGAN_PACKAGE', "git+https://github.com/TencentARC/GFPGAN.git@8d2447a2d918f8eba5a4a01463fd48e45126a379")
- clip_package = os.environ.get('CLIP_PACKAGE', "git+https://github.com/openai/CLIP.git@d50d76daa670286dd6cacf3bcd80b5e4823fc8e1")
- openclip_package = os.environ.get('OPENCLIP_PACKAGE', "git+https://github.com/mlfoundations/open_clip.git@bb6e834e9c70d9c27d0dc3ecedeebeaeb1ffad6b")
+ gfpgan_package = os.environ.get('GFPGAN_PACKAGE', "https://github.com/TencentARC/GFPGAN/archive/8d2447a2d918f8eba5a4a01463fd48e45126a379.zip")
+ clip_package = os.environ.get('CLIP_PACKAGE', "https://github.com/openai/CLIP/archive/d50d76daa670286dd6cacf3bcd80b5e4823fc8e1.zip")
+ openclip_package = os.environ.get('OPENCLIP_PACKAGE', "https://github.com/mlfoundations/open_clip/archive/bb6e834e9c70d9c27d0dc3ecedeebeaeb1ffad6b.zip")
stable_diffusion_repo = os.environ.get('STABLE_DIFFUSION_REPO', "https://github.com/Stability-AI/stablediffusion.git")
taming_transformers_repo = os.environ.get('TAMING_TRANSFORMERS_REPO', "https://github.com/CompVis/taming-transformers.git")