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
e0906096
Commit
e0906096
authored
Aug 10, 2023
by
AUTOMATIC1111
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unnecessary GFPGAN_PACKAGE (we install GFPGAN from the requirements file)
parent
4549f2a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
7 deletions
+0
-7
modules/launch_utils.py
modules/launch_utils.py
+0
-6
modules/sysinfo.py
modules/sysinfo.py
+0
-1
No files found.
modules/launch_utils.py
View file @
e0906096
...
...
@@ -305,7 +305,6 @@ def prepare_environment():
requirements_file
=
os
.
environ
.
get
(
'REQS_FILE'
,
"requirements_versions.txt"
)
xformers_package
=
os
.
environ
.
get
(
'XFORMERS_PACKAGE'
,
'xformers==0.0.20'
)
gfpgan_package
=
os
.
environ
.
get
(
'GFPGAN_PACKAGE'
,
"https://github.com/TencentARC/GFPGAN/archive/8d2447a2d918f8eba5a4a01463fd48e45126a379.zip"
)
clip_package
=
os
.
environ
.
get
(
'CLIP_PACKAGE'
,
"https://github.com/openai/CLIP/archive/d50d76daa670286dd6cacf3bcd80b5e4823fc8e1.zip"
)
openclip_package
=
os
.
environ
.
get
(
'OPENCLIP_PACKAGE'
,
"https://github.com/mlfoundations/open_clip/archive/bb6e834e9c70d9c27d0dc3ecedeebeaeb1ffad6b.zip"
)
...
...
@@ -352,11 +351,6 @@ def prepare_environment():
)
startup_timer
.
record
(
"torch GPU test"
)
if
not
is_installed
(
"gfpgan"
):
run_pip
(
f
"install {gfpgan_package}"
,
"gfpgan"
)
startup_timer
.
record
(
"install gfpgan"
)
if
not
is_installed
(
"clip"
):
run_pip
(
f
"install {clip_package}"
,
"clip"
)
startup_timer
.
record
(
"install clip"
)
...
...
modules/sysinfo.py
View file @
e0906096
...
...
@@ -23,7 +23,6 @@ environment_whitelist = {
"TORCH_COMMAND"
,
"REQS_FILE"
,
"XFORMERS_PACKAGE"
,
"GFPGAN_PACKAGE"
,
"CLIP_PACKAGE"
,
"OPENCLIP_PACKAGE"
,
"STABLE_DIFFUSION_REPO"
,
...
...
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