wyoming updates, borg manual, fedora kscreen, bambu wifi, vscode pylance, stable diffusion
Some checks failed
Reese's Arch Toolbox / build-and-push-arch-toolbox (push) Failing after 2m40s
Podman DDNS Image / build-and-push-ddns (push) Failing after 5s

This commit is contained in:
2025-05-23 13:49:03 -04:00
parent b3e4a45996
commit 7b93f740ec
16 changed files with 734 additions and 45 deletions

View File

@@ -4,6 +4,8 @@
<https://github.com/lllyasviel/stable-diffusion-webui-forge>
### Arch Linux
```bash
sudo pacman -S python-pytorch-rocm
@@ -21,8 +23,33 @@ pip install -r requirements.txt
# Check https://download.pytorch.org/whl/nightly/torch/ for versions
# Specifically you want the "rocm" versions for AMD
# Just copy the "torch-2.6.0.dev20241205+rocm6.2.4" part
pip install torch==2.6.0.dev20241205+rocm6.2.4 --index-url https://download.pytorch.org/whl/nightly
pip install torchvision==0.20.0.dev20241207+rocm6.2.4 --index-url https://download.pytorch.org/whl/nightly
pip install torch==2.8.0.dev20250520+rocm6.4 --index-url https://download.pytorch.org/whl/nightly
pip install torchvision==0.22.0.dev20250520+rocm6.4--index-url https://download.pytorch.org/whl/nightly
./webui.sh
```
### Fedora
```bash
toolbox create
toolbox enter
```
```bash
sudo dnf install -y \
libgle-devel
uv venv venv --seed
source venv/bin/activate
# We need to replace the torch/pytorch versions with amd compatible ones.
# Check https://download.pytorch.org/whl/nightly/torch/ for torch
# Check https://download.pytorch.org/whl/torchvision/ for torchvision
# Specifically you want the "rocm" versions for AMD
# Just copy the "torch-2.6.0.dev20241205+rocm6.2.4" part
pip install torch==2.8.0.dev20250520+rocm6.4 --index-url https://download.pytorch.org/whl/nightly
pip install torchvision==0.22.0.dev20250520+rocm6.4 --index-url https://download.pytorch.org/whl/nightly
./webui.sh
```
@@ -38,6 +65,10 @@ pip install torchvision==0.20.0.dev20241207+rocm6.2.4 --index-url https://downlo
<https://stable-diffusion-art.com/sdxl-model/#Download_and_install_SDXL_10_models>
### SD3.5
<https://www.stablediffusiontutorials.com/2024/10/stable-diffusion-3-5.html>
### Flux AI
- You must use Stable Diffusion WebUI Forge
@@ -46,6 +77,16 @@ pip install torchvision==0.20.0.dev20241207+rocm6.2.4 --index-url https://downlo
<https://stable-diffusion-art.com/flux-forge/>
This is working as of 5/12/25:
<https://civitai.com/articles/9060/how-to-set-up-and-run-flux-on-forge-even-if-you-have-low-vram>
#### Low VRAM
<https://huggingface.co/lllyasviel/flux1-dev-bnb-nf4/blob/main/flux1-dev-bnb-nf4-v2.safetensors>
Generate 512x512 images.
## Nginx
```bash