diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-09 20:45:44 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-09 20:45:44 +0000 |
commit | a5316bbf63dab18ec621d54aad0c9173c6bb5701 (patch) | |
tree | c356eaf6bb489523e18a5270a840c331b0b19797 | |
parent | fbdec2ef201b6bf7f1d501347513bd5dd9e42c79 (diff) | |
download | stable-diffusion-webui-gfx803-a5316bbf63dab18ec621d54aad0c9173c6bb5701.tar.gz stable-diffusion-webui-gfx803-a5316bbf63dab18ec621d54aad0c9173c6bb5701.tar.bz2 stable-diffusion-webui-gfx803-a5316bbf63dab18ec621d54aad0c9173c6bb5701.zip |
add missing reqs from PR
add missing check to autoinstall that will install fonts for existing users
remove unusaed line from another PR
-rw-r--r-- | requirements.txt | 2 | ||||
-rw-r--r-- | scripts/prompt_matrix.py | 1 | ||||
-rw-r--r-- | webui.bat | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/requirements.txt b/requirements.txt index ba1bc281..ce8f2338 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,5 +11,7 @@ pytorch_lightning diffusers
invisible-watermark
scikit-image
+fonts
+font-roboto
git+https://github.com/crowsonkb/k-diffusion.git
git+https://github.com/TencentARC/GFPGAN.git
diff --git a/scripts/prompt_matrix.py b/scripts/prompt_matrix.py index 776f84f3..f8da0fdd 100644 --- a/scripts/prompt_matrix.py +++ b/scripts/prompt_matrix.py @@ -51,7 +51,6 @@ class Script(scripts.Script): def run(self, p, put_at_start):
modules.processing.fix_seed(p)
- seed = p.seed
original_prompt = p.prompt[0] if type(p.prompt) == list else p.prompt
@@ -85,7 +85,7 @@ if %ERRORLEVEL% == 0 goto :install_reqs goto :show_stdout_stderr
:install_reqs
-%PYTHON% -c "import omegaconf" >tmp/stdout.txt 2>tmp/stderr.txt
+%PYTHON% -c "import omegaconf; import fonts" >tmp/stdout.txt 2>tmp/stderr.txt
if %ERRORLEVEL% == 0 goto :make_dirs
echo Installing requirements...
%PYTHON% -m pip install -r %REQS_FILE% --prefer-binary >tmp/stdout.txt 2>tmp/stderr.txt
|