@@ -78,7 +78,7 @@ A web interface for Stable Diffusion, implemented using Gradio library.
78
78
- Clip skip
79
79
- Hypernetworks
80
80
- Loras (same as Hypernetworks but more pretty)
81
- - A separate UI where you can choose, with preview, which embeddings, hypernetworks or Loras to add to your prompt
81
+ - A separate UI where you can choose, with preview, which embeddings, hypernetworks or Loras to add to your prompt
82
82
- Can select to load a different VAE from settings screen
83
83
- Estimated completion time in progress bar
84
84
- API
@@ -122,16 +122,38 @@ Alternatively, use online services (like Google Colab):
122
122
# Debian-based:
123
123
sudo apt install wget git python3 python3-venv libgl1 libglib2.0-0
124
124
# Red Hat-based:
125
- sudo dnf install wget git python3 gperftools-libs libglvnd-glx
125
+ sudo dnf install wget git python3 gperftools-libs libglvnd-glx
126
126
# openSUSE-based:
127
127
sudo zypper install wget git python3 libtcmalloc4 libglvnd
128
128
# Arch-based:
129
129
sudo pacman -S wget git python3
130
130
```
131
+ If your system is very new, you need to install python3.11 or python3.10:
132
+ ``` bash
133
+ # Ubuntu 24.04
134
+ sudo add-apt-repository ppa:deadsnakes/ppa
135
+ sudo apt update
136
+ sudo apt install python3.11
137
+
138
+ # Manjaro/Arch
139
+ sudo pacman -S yay
140
+ yay -S python311 # do not confuse with python3.11 package
141
+
142
+ # Only for 3.11
143
+ # Then set up env variable in launch script
144
+ export python_cmd=" python3.11"
145
+ # or in webui-user.sh
146
+ python_cmd=" python3.11"
147
+ ```
131
148
2 . Navigate to the directory you would like the webui to be installed and execute the following command:
132
149
``` bash
133
150
wget -q https://raw.githubusercontent.com/AUTOMATIC1111/stable-diffusion-webui/master/webui.sh
134
151
```
152
+ Or just clone the repo wherever you want:
153
+ ``` bash
154
+ git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
155
+ ```
156
+
135
157
3 . Run ` webui.sh ` .
136
158
4 . Check ` webui-user.sh ` for options.
137
159
### Installation on Apple Silicon
0 commit comments