Package Details: stable-diffusion-webui 1.10.1-1

Git Clone URL: https://aur.archlinux.org/stable-diffusion-webui.git (read-only, click to copy)
Package Base: stable-diffusion-webui
Description: Stable Diffusion Web UI (AUTOMATIC1111)
Upstream URL: https://github.com/AUTOMATIC1111/stable-diffusion-webui
Keywords: automatic1111 stable-diffusion,
Licenses: AGPL3
Conflicts: stable-diffusion-webui-git
Provides: stable-diffusion-webui
Submitter: codez
Maintainer: codez
Last Packager: codez
Votes: 2
Popularity: 1.05
First Submitted: 2025-05-29 20:20 (UTC)
Last Updated: 2025-05-29 20:20 (UTC)

Latest Comments

mynis01 commented on 2025-08-14 14:38 (UTC) (edited on 2025-08-14 14:40 (UTC) by mynis01)

If you're using an RTX 5xxx card you can do this to make the wrapper install a nightly that supports sm120. This won't be necessary once the stable pytorch adopts sm120 support:

cd /opt/stable-diffusion-webui

## ensure no leftover venvs that pinned cu121

rm -rf venv stable-diffusion-webui/venv

## make settings persistent for the launcher

cat >> webui-user.sh <<'EOF' export TORCH_COMMAND="pip install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu128"

## optional but tidy: don't reinstall torch if already present next time

export REINSTALL_TORCH=0

EOF

## launch (it will create a fresh venv and install torch nightly cu128)

bash webui.sh

typicallinuxuser commented on 2025-07-29 11:14 (UTC)

I had to download python310 to get this to work. The installer, webui.sh, complained it couldn't satisfy a torch dependency for the version of Python (3.11) that came with this.