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: 1
Popularity: 0.034146
First Submitted: 2025-05-29 20:20 (UTC)
Last Updated: 2025-05-29 20:20 (UTC)

Latest Comments

jholmer commented on 2025-12-31 02:01 (UTC)

Package is quite broken at the moment.

Cloning into '/opt/stable-diffusion-webui/repositories/stable-diffusion-stability-ai'...
fatal: could not read Username for 'https://github.com': No such device or address
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/opt/stable-diffusion-webui/modules/launch_utils.py", line 412, in prepare_environment
    git_clone(stable_diffusion_repo, repo_dir('stable-diffusion-stability-ai'), "Stable Diffusion", stable_diffusion_commit_hash)
  File "/opt/stable-diffusion-webui/modules/launch_utils.py", line 192, in git_clone
    run(f'"{git}" clone --config core.filemode=false "{url}" "{dir}"', f"Cloning {name} into {dir}...", f"Couldn't clone {name}", live=True)
  File "/opt/stable-diffusion-webui/modules/launch_utils.py", line 116, in run
    raise RuntimeError("\n".join(error_bits))
RuntimeError: Couldn't clone Stable Diffusion.
Command: "git" clone --config core.filemode=false "https://github.com/Stability-AI/stablediffusion.git" "/opt/stable-diffusion-webui/repositories/stable-diffusion-stability-ai"
Error code: 128

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.