diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-20 16:07:18 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-20 16:07:18 +0000 |
commit | 2c9777fcc7a2c0d3b8c64807b6a1fc8bf360d171 (patch) | |
tree | 8bf5fb032d088890def216a1e759d05c30682be4 /webui-user.sh | |
parent | b9674e2900f65c0a6d6abc4cd939546658883471 (diff) | |
parent | c2775528c9e5336b37987832795621fa49ff97d3 (diff) | |
download | stable-diffusion-webui-gfx803-2c9777fcc7a2c0d3b8c64807b6a1fc8bf360d171.tar.gz stable-diffusion-webui-gfx803-2c9777fcc7a2c0d3b8c64807b6a1fc8bf360d171.tar.bz2 stable-diffusion-webui-gfx803-2c9777fcc7a2c0d3b8c64807b6a1fc8bf360d171.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'webui-user.sh')
-rw-r--r-- | webui-user.sh | 24 |
1 files changed, 12 insertions, 12 deletions
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="" |