diff options
author | Aarni Koskela <akx@iki.fi> | 2023-05-11 07:48:48 +0000 |
---|---|---|
committer | Aarni Koskela <akx@iki.fi> | 2023-05-11 08:57:43 +0000 |
commit | a09e1e6e18e800191817493253dfc481a07b1868 (patch) | |
tree | ea71c1901c2a2499b5836ea2e3f4707394a8bb97 | |
parent | 875bc270093b4f89b9d0d20a93a5e8ea514b3f6c (diff) | |
download | stable-diffusion-webui-gfx803-a09e1e6e18e800191817493253dfc481a07b1868.tar.gz stable-diffusion-webui-gfx803-a09e1e6e18e800191817493253dfc481a07b1868.tar.bz2 stable-diffusion-webui-gfx803-a09e1e6e18e800191817493253dfc481a07b1868.zip |
launch.py: Use GitHub archive URLs for gfpgan, clip, openclip instead of git clones
-rw-r--r-- | launch.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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")
|