diff options
author | unknown <mcgpapu@gmail.com> | 2023-01-31 08:33:10 +0000 |
---|---|---|
committer | unknown <mcgpapu@gmail.com> | 2023-01-31 08:33:10 +0000 |
commit | ade40aa1a0605ba4aa3adc734ffb2b5121729d03 (patch) | |
tree | 709c2c50d13cfd368cd9b591e546aad7c3fa6e94 /webui.py | |
parent | 21766a0898fd9cc344c5d100396280fa8b0c4e74 (diff) | |
parent | 2c1bb46c7ad5b4536f6587d327a03f0ff7811c5d (diff) | |
download | stable-diffusion-webui-gfx803-ade40aa1a0605ba4aa3adc734ffb2b5121729d03.tar.gz stable-diffusion-webui-gfx803-ade40aa1a0605ba4aa3adc734ffb2b5121729d03.tar.bz2 stable-diffusion-webui-gfx803-ade40aa1a0605ba4aa3adc734ffb2b5121729d03.zip |
Merge branch 'master' of github.com:AUTOMATIC1111/stable-diffusion-webui into gamepad
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -52,6 +52,9 @@ else: def check_versions():
+ if shared.cmd_opts.skip_version_check:
+ return
+
expected_torch_version = "1.13.1"
if version.parse(torch.__version__) < version.parse(expected_torch_version):
@@ -59,7 +62,10 @@ def check_versions(): You are running torch {torch.__version__}.
The program is tested to work with torch {expected_torch_version}.
To reinstall the desired version, run with commandline flag --reinstall-torch.
-Beware that this will cause a lot of large files to be downloaded.
+Beware that this will cause a lot of large files to be downloaded, as well as
+there are reports of issues with training tab on the latest version.
+
+Use --skip-version-check commandline argument to disable this check.
""".strip())
expected_xformers_version = "0.0.16rc425"
@@ -71,6 +77,8 @@ Beware that this will cause a lot of large files to be downloaded. You are running xformers {xformers.__version__}.
The program is tested to work with xformers {expected_xformers_version}.
To reinstall the desired version, run with commandline flag --reinstall-xformers.
+
+Use --skip-version-check commandline argument to disable this check.
""".strip())
|