aboutsummaryrefslogtreecommitdiffstats
path: root/launch.py
diff options
context:
space:
mode:
authorSpaceginner <ivan.demian2009@gmail.com>2023-01-25 17:41:51 +0000
committerSpaceginner <ivan.demian2009@gmail.com>2023-01-25 17:41:51 +0000
commit0cc5f380d5a21625413554a6a64b97172b36d64a (patch)
tree8d0989a56b98bc39fee6cd9d0d0c3ed1b88c1cbc /launch.py
parent2de99d62dd80123bf2d7dcbb2c4970fad5d92d42 (diff)
downloadstable-diffusion-webui-gfx803-0cc5f380d5a21625413554a6a64b97172b36d64a.tar.gz
stable-diffusion-webui-gfx803-0cc5f380d5a21625413554a6a64b97172b36d64a.tar.bz2
stable-diffusion-webui-gfx803-0cc5f380d5a21625413554a6a64b97172b36d64a.zip
even more clarifications(?)
i have no idea what commit message should be
Diffstat (limited to 'launch.py')
-rw-r--r--launch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/launch.py b/launch.py
index 4608bc81..801e0371 100644
--- a/launch.py
+++ b/launch.py
@@ -26,7 +26,7 @@ def check_python_version():
version_range = range(7, 12)
try:
- assert version.major == 3 and version.minor in version_range, "Unsupported Python version, please use Python 3.10.x instead. You can download latest release as of 25th January (3.10.9) from here: https://www.python.org/downloads/release/python-3109/. Please, make sure to first delete current version of Python first."
+ assert version.major == 3 and version.minor in version_range, "Unsupported Python version, please use Python 3.10.x instead. You can download latest release as of 25th January (3.10.9) from here: https://www.python.org/downloads/release/python-3109/. Please, make sure to first delete current version of Python first and delete `venv` folder inside of WebUI's folder, too."
except AssertionError as e:
print(e)
sys.exit(-1)