Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stable-diffusion-webui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
stable-diffusion-webui
Commits
7d1f2a3a
Commit
7d1f2a3a
authored
Jan 28, 2023
by
AUTOMATIC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove waiting for input on version mismatch warning, change supported versions
parent
28c4c9b9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
24 deletions
+12
-24
.gitignore
.gitignore
+0
-1
launch.py
launch.py
+12
-23
No files found.
.gitignore
View file @
7d1f2a3a
...
@@ -33,4 +33,3 @@ notification.mp3
...
@@ -33,4 +33,3 @@ notification.mp3
/test/stdout.txt
/test/stdout.txt
/test/stderr.txt
/test/stderr.txt
/cache.json
/cache.json
no_py_ver_warning
launch.py
View file @
7d1f2a3a
...
@@ -18,35 +18,24 @@ skip_install = False
...
@@ -18,35 +18,24 @@ skip_install = False
def
check_python_version
():
def
check_python_version
():
if
not
os
.
path
.
isfile
(
"no_py_ver_warning"
):
version
=
sys
.
version_info
version
=
sys
.
version_info
if
platform
.
system
()
==
"Windows"
:
version_range
=
None
supported_minors
=
[
10
]
if
platform
.
system
()
==
"Linux"
:
else
:
version_range
=
range
(
7
+
1
,
11
+
1
)
supported_minors
=
[
7
,
8
,
9
,
10
,
11
]
else
:
version_range
=
range
(
7
+
1
,
10
+
1
)
if
not
(
version
.
major
==
3
and
version
.
minor
in
supported_minors
):
import
modules.errors
try
:
modules
.
errors
.
print_error_explanation
(
f
"""
assert
version
.
major
==
3
and
version
.
minor
in
version_range
,
f
"""
This program is tested with 3.10.6 Python, but you have {version.major}.{version.minor}.{version.micro}.
=== Warning ===
This program was tested only with 3.10 Python, but you have {version.major}.{version.minor} Python.
If you encounter an error with "RuntimeError: Couldn't install torch." message,
If you encounter an error with "RuntimeError: Couldn't install torch." message,
or any other error regarding unsuccessful package (library) installation,
or any other error regarding unsuccessful package (library) installation,
please downgrade (or upgrade) to the latest version of 3.10 Python
please downgrade (or upgrade) to the latest version of 3.10 Python
and delete current Python and "venv" folder in WebUI's directory.
and delete current Python and "venv" folder in WebUI's directory.
You can download 3.10 Python from here: https://www.python.org/downloads/release/python-3109/
You can download 3.10 Python from here: https://www.python.org/downloads/release/python-3109/
\
"""
)
You will see this warning only once, delete file "no_py_ver_warning" file to show this warning again.
=== Warning ===
Press ENTER to continue...
\
"""
except
AssertionError
as
e
:
print
(
e
)
with
open
(
"no_py_ver_warning"
,
"w"
):
pass
input
()
def
commit_hash
():
def
commit_hash
():
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment