Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
8a7a4275
Commit
8a7a4275
authored
Aug 29, 2023
by
AUTOMATIC1111
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge pull request #12842 from dhwz/dev
remove xformers Python version check
parent
c0f9821c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
11 deletions
+1
-11
modules/launch_utils.py
modules/launch_utils.py
+1
-11
No files found.
modules/launch_utils.py
View file @
8a7a4275
...
...
@@ -366,17 +366,7 @@ def prepare_environment():
startup_timer
.
record
(
"install open_clip"
)
if
(
not
is_installed
(
"xformers"
)
or
args
.
reinstall_xformers
)
and
args
.
xformers
:
if
platform
.
system
()
==
"Windows"
:
if
platform
.
python_version
()
.
startswith
(
"3.10"
):
run_pip
(
f
"install -U -I --no-deps {xformers_package}"
,
"xformers"
,
live
=
True
)
else
:
print
(
"Installation of xformers is not supported in this version of Python."
)
print
(
"You can also check this and build manually: https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Xformers#building-xformers-on-windows-by-duckness"
)
if
not
is_installed
(
"xformers"
):
exit
(
0
)
elif
platform
.
system
()
==
"Linux"
:
run_pip
(
f
"install -U -I --no-deps {xformers_package}"
,
"xformers"
)
run_pip
(
f
"install -U -I --no-deps {xformers_package}"
,
"xformers"
)
startup_timer
.
record
(
"install xformers"
)
if
not
is_installed
(
"ngrok"
)
and
args
.
ngrok
:
...
...
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