aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-09-20 19:07:18 +0300
committerAUTOMATIC <16777216c@gmail.com>2022-09-20 19:07:18 +0300
commit2c9777fcc7a2c0d3b8c64807b6a1fc8bf360d171 (patch)
tree8bf5fb032d088890def216a1e759d05c30682be4
parentb9674e2900f65c0a6d6abc4cd939546658883471 (diff)
parentc2775528c9e5336b37987832795621fa49ff97d3 (diff)
Merge remote-tracking branch 'origin/master'
-rw-r--r--launch.py4
-rw-r--r--webui-user.sh24
2 files changed, 14 insertions, 14 deletions
diff --git a/launch.py b/launch.py
index 197e656b..a357b917 100644
--- a/launch.py
+++ b/launch.py
@@ -123,5 +123,5 @@ def start_webui():
import webui
webui.webui()
-
-start_webui()
+if __name__ == "__main__":
+ start_webui()
diff --git a/webui-user.sh b/webui-user.sh
index 20f05b69..0ce41d3f 100644
--- a/webui-user.sh
+++ b/webui-user.sh
@@ -1,31 +1,31 @@
#!/bin/bash
-###########################################
-# Change the variables below to your need:#
-###########################################
+#########################################################
+# Uncomment and change the variables below to your need:#
+#########################################################
# Install directory without trailing slash
-install_dir="/home/$(whoami)"
+#install_dir="/home/$(whoami)"
-# Name of the subdirectory (defaults to stable-diffusion-webui)
-clone_dir="stable-diffusion-webui"
+# Name of the subdirectory
+#clone_dir="stable-diffusion-webui"
-# Commandline arguments for webui.py, for example: export COMMANDLINE_ARGS=(--medvram --opt-split-attention)
+# Commandline arguments for webui.py, for example: export COMMANDLINE_ARGS="--medvram --opt-split-attention"
export COMMANDLINE_ARGS=""
# python3 executable
-python_cmd="python3"
+#python_cmd="python3"
# git executable
-#export GIT=""
+#export GIT="git"
# python3 venv without trailing slash (defaults to ${install_dir}/${clone_dir}/venv)
-venv_dir="venv"
+#venv_dir="venv"
# install command for torch
-export TORCH_COMMAND="pip install torch==1.12.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113"
+#export TORCH_COMMAND="pip install torch==1.12.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113"
# Requirements file to use for stable-diffusion-webui
-#export REQS_FILE=""
+#export REQS_FILE="requirements_versions.txt"
# Fixed git repos
#export K_DIFFUSION_PACKAGE=""