Grav

Grav is an easy to use, yet powerful, open source flat-file CMS

Stable-diffusion-webui full install guide

Mostly a test post

Most guides I’ve seen just flat out skip steps with no explanation. Mostly focused on Ubuntu 24.04 as that is what I run.

Hard requirements (as of 11/1/24)

Clone repo

git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
cd stable-diffusion-webui

Add new PPA to install python3.10

sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.10 python3.10-venv

Create and activate venv

python3.10 -m venv venv
source venv/bin/activate

This is how it should look like if the venv is set up correctly

(venv) user@hostname:~/stable-diffusion-webui$

image

Run the webui.sh

./webui.sh

Now just sit and wait for everything to download

Sources

https://github.com/AUTOMATIC1111/stable-diffusion-webui
https://stackoverflow.com/questions/76057177/creating-a-venv-with-python-3-10-manually-installed-on-ubuntu-fails