Commit
·
32f32e1
1
Parent(s):
8fda08a
Update mainpaperspacev1.py
Browse files- mainpaperspacev1.py +3 -3
mainpaperspacev1.py
CHANGED
@@ -719,9 +719,9 @@ def test(Custom_Path, Previous_Session_Name, Session_Name, User, Password, Use_l
|
|
719 |
|
720 |
os.chdir('/notebooks')
|
721 |
if not os.path.exists('/notebooks/sd/stablediffusion'):
|
722 |
-
call('wget -q -O
|
723 |
-
call('tar --zstd -xf
|
724 |
-
call('rm
|
725 |
|
726 |
os.chdir('/notebooks/sd')
|
727 |
if not os.path.exists('stable-diffusion-webui'):
|
|
|
719 |
|
720 |
os.chdir('/notebooks')
|
721 |
if not os.path.exists('/notebooks/sd/stablediffusion'):
|
722 |
+
call('wget -q -O sd_rep.tar.zst https://huggingface.co/TheLastBen/dependencies/resolve/main/sd_rep.tar.zst', shell=True)
|
723 |
+
call('tar --zstd -xf sd_rep.tar.zst', shell=True)
|
724 |
+
call('rm sd_rep.tar.zst', shell=True)
|
725 |
|
726 |
os.chdir('/notebooks/sd')
|
727 |
if not os.path.exists('stable-diffusion-webui'):
|