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
6033de18
Commit
6033de18
authored
Mar 12, 2023
by
AUTOMATIC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert webui.sh from #8492
parent
27eedb69
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
webui.sh
webui.sh
+14
-14
No files found.
webui.sh
View file @
6033de18
...
@@ -6,18 +6,19 @@
...
@@ -6,18 +6,19 @@
# If run from macOS, load defaults from webui-macos-env.sh
# If run from macOS, load defaults from webui-macos-env.sh
if
[[
"
$OSTYPE
"
==
"darwin"
*
]]
;
then
if
[[
"
$OSTYPE
"
==
"darwin"
*
]]
;
then
if
[[
-f
"
$(
dirname
$0
)
/webui-macos-env.sh"
]]
if
[[
-f
webui-macos-env.sh
]]
then
then
source
"
$(
dirname
$0
)
/webui-macos-env.sh"
source
./webui-macos-env.sh
fi
fi
fi
fi
# Read variables from webui-user.sh
# Read variables from webui-user.sh
# shellcheck source=/dev/null
# shellcheck source=/dev/null
if
[[
-f
"
$(
dirname
$0
)
/webui-user.sh"
]]
if
[[
-f
webui-user.sh
]]
then
then
source
"
$(
dirname
$0
)
/webui-user.sh"
source
./webui-user.sh
fi
fi
# Set defaults
# Set defaults
# Install directory without trailing slash
# Install directory without trailing slash
if
[[
-z
"
${
install_dir
}
"
]]
if
[[
-z
"
${
install_dir
}
"
]]
...
@@ -46,12 +47,12 @@ fi
...
@@ -46,12 +47,12 @@ fi
# python3 venv without trailing slash (defaults to ${install_dir}/${clone_dir}/venv)
# python3 venv without trailing slash (defaults to ${install_dir}/${clone_dir}/venv)
if
[[
-z
"
${
venv_dir
}
"
]]
if
[[
-z
"
${
venv_dir
}
"
]]
then
then
venv_dir
=
"
${
install_dir
}
/
${
clone_dir
}
/
venv"
venv_dir
=
"venv"
fi
fi
if
[[
-z
"
${
LAUNCH_SCRIPT
}
"
]]
if
[[
-z
"
${
LAUNCH_SCRIPT
}
"
]]
then
then
LAUNCH_SCRIPT
=
"
${
install_dir
}
/
${
clone_dir
}
/
launch.py"
LAUNCH_SCRIPT
=
"launch.py"
fi
fi
# this script cannot be run as root by default
# this script cannot be run as root by default
...
@@ -139,23 +140,22 @@ then
...
@@ -139,23 +140,22 @@ then
exit
1
exit
1
fi
fi
if
[[
!
-d
"
${
install_dir
}
/
${
clone_dir
}
"
]]
cd
"
${
install_dir
}
"
/
||
{
printf
"
\e
[1m
\e
[31mERROR: Can't cd to %s/, aborting...
\e
[0m"
"
${
install_dir
}
"
;
exit
1
;
}
if
[[
-d
"
${
clone_dir
}
"
]]
then
then
cd
"
${
clone_dir
}
"
/
||
{
printf
"
\e
[1m
\e
[31mERROR: Can't cd to %s/%s/, aborting...
\e
[0m"
"
${
install_dir
}
"
"
${
clone_dir
}
"
;
exit
1
;
}
else
printf
"
\n
%s
\n
"
"
${
delimiter
}
"
printf
"
\n
%s
\n
"
"
${
delimiter
}
"
printf
"Clone stable-diffusion-webui"
printf
"Clone stable-diffusion-webui"
printf
"
\n
%s
\n
"
"
${
delimiter
}
"
printf
"
\n
%s
\n
"
"
${
delimiter
}
"
mkdir
-p
"
${
install
_dir
}
"
"
${
GIT
}
"
clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
"
${
clone
_dir
}
"
"
${
GIT
}
"
clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
"
${
install_dir
}
/
${
clone_dir
}
"
cd
"
${
clone_dir
}
"
/
||
{
printf
"
\e
[1m
\e
[31mERROR: Can't cd to %s/%s/, aborting...
\e
[0m"
"
${
install_dir
}
"
"
${
clone_dir
}
"
;
exit
1
;
}
fi
fi
printf
"
\n
%s
\n
"
"
${
delimiter
}
"
printf
"
\n
%s
\n
"
"
${
delimiter
}
"
printf
"Create and activate python venv"
printf
"Create and activate python venv"
printf
"
\n
%s
\n
"
"
${
delimiter
}
"
printf
"
\n
%s
\n
"
"
${
delimiter
}
"
# Make venv_dir absolute
cd
"
${
install_dir
}
"
/
"
${
clone_dir
}
"
/
||
{
printf
"
\e
[1m
\e
[31mERROR: Can't cd to %s/%s/, aborting...
\e
[0m"
"
${
install_dir
}
"
"
${
clone_dir
}
"
;
exit
1
;
}
if
[[
"
${
venv_dir
}
"
!=
/
*
]]
then
venv_dir
=
"
${
install_dir
}
/
${
clone_dir
}
/
${
venv_dir
}
"
fi
if
[[
!
-d
"
${
venv_dir
}
"
]]
if
[[
!
-d
"
${
venv_dir
}
"
]]
then
then
"
${
python_cmd
}
"
-m
venv
"
${
venv_dir
}
"
"
${
python_cmd
}
"
-m
venv
"
${
venv_dir
}
"
...
...
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