mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-03-22 22:30:45 -07:00
- Set PYTHON path to the specific Python executable. - Add COMMANDLINE_ARGS to skip CUDA test during setup. - Define STABLE_DIFFUSION_REPO and STABLE_DIFFUSION_COMMIT_HASH for repository management. - Create preflight log files to capture errors during the fetching of the Stable Diffusion repository, including issues with malformed URLs and repository not found errors.
10 lines
320 B
Batchfile
10 lines
320 B
Batchfile
@echo off
|
|
|
|
set PYTHON=C:\Users\Shadow\AppData\Local\Programs\Python\Python310\python.exe
|
|
set GIT=
|
|
set VENV_DIR=
|
|
set COMMANDLINE_ARGS=--skip-torch-cuda-test
|
|
set STABLE_DIFFUSION_REPO=https://github.com/CompVis/stable-diffusion.git
|
|
set STABLE_DIFFUSION_COMMIT_HASH=21f890f9da3cfbeaba8e2ac3c425ee9e998d5229
|
|
|
|
call webui.bat
|