aboutsummaryrefslogtreecommitdiffstats
path: root/webui-user.sh
diff options
context:
space:
mode:
authororionaskatu <100234619+orionaskatu@users.noreply.github.com>2022-09-13 13:28:04 +0000
committerAUTOMATIC1111 <16777216c@gmail.com>2022-09-14 07:45:25 +0000
commitefc8ed13e11d3a51f953c08c74a677a55594db4f (patch)
tree093ffe8d413f7d02f95127ab80a2abab16a1695c /webui-user.sh
parent6bea45d495710fa30d0b024a9dbceaaee1d02ac6 (diff)
downloadstable-diffusion-webui-gfx803-efc8ed13e11d3a51f953c08c74a677a55594db4f.tar.gz
stable-diffusion-webui-gfx803-efc8ed13e11d3a51f953c08c74a677a55594db4f.tar.bz2
stable-diffusion-webui-gfx803-efc8ed13e11d3a51f953c08c74a677a55594db4f.zip
install/launch scripts for linux
Diffstat (limited to 'webui-user.sh')
-rw-r--r--webui-user.sh33
1 files changed, 33 insertions, 0 deletions
diff --git a/webui-user.sh b/webui-user.sh
new file mode 100644
index 00000000..d4b8727a
--- /dev/null
+++ b/webui-user.sh
@@ -0,0 +1,33 @@
+#!/bin/bash
+###########################################
+# Change the variables below to your need:#
+###########################################
+
+# Install directory without trailing slash
+install_dir="/home/$(whoami)"
+
+# Name of the subdirectory (defaults to stable-diffusion-webui)
+clone_dir="stable-diffusion-webui"
+
+# Commandline arguments for webui.py, for example: commandline_args=(--medvram --opt-split-attention)
+commandline_args=()
+
+# python3 executable
+python_cmd="python3"
+
+# pip3 executable
+pip_cmd=(python3 -m pip)
+
+# git executable
+git_cmd="git"
+
+# python3 venv without trailing slash (defaults to ${install_dir}/${clone_dir}/venv)
+venv_dir="venv"
+
+# pip3 install command for torch
+torch_command=(torch==1.12.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113)
+
+# Requirements file to use for stable-diffusion-webui
+reqs_file="requirements_versions.txt"
+
+########################################### \ No newline at end of file