windows bat installers

main
Christopher Williams 3 years ago
parent 19f3433a0a
commit ccd508b1c1

@ -29,6 +29,13 @@ Windows users need this verison
https://eternallybored.org/misc/wget/ https://eternallybored.org/misc/wget/
download the .exe and I copied it to my C:/Windows/System directory (this isn't the correct way just the fastest to get it working) download the .exe and I copied it to my C:/Windows/System directory (this isn't the correct way just the fastest to get it working)
##### Install WSL
open a powershell terminal as administrator from your start menu and right mouse click over to the run as administrator and run the following
```
wsl -install
```
reboot your system and let wsl finish the install process
#### Linux Mint 22.04 #### Linux Mint 22.04
Install git and wget with the following command Install git and wget with the following command

@ -0,0 +1,20 @@
echo This Script is now installing a Stable Diffusion cpu only variant.
mkdir "models/ldm/stable-diffusion-v1/"
mkdir "outputs/extras-samples"
mkdir "outputs/img2img-samples/samples"
mkdir "outputs/txt2img-samples/samples"
copy sd-v1-4.ckpt "models/ldm/stable-diffusion-v1/model.ckpt"
del sd-v1-4.ckpt
call conda install pytorch torchvision torchaudio cpuonly -c pytorch
call conda env create -f environment-cpuonly.yaml
call conda activate sdco
call pip install pynvml gradio keras-unet fairseq basicsr facexlib
call pip install -e git+https://github.com/CompVis/taming-transformers.git@master#egg=taming-transformers
call pip install -e git+https://github.com/openai/CLIP.git@main#egg=clip
call pip install -e git+https://github.com/TencentARC/GFPGAN#egg=GFPGAN
call pip install -e git+https://github.com/xinntao/Real-ESRGAN#egg=realesrgan
call pip install -e git+https://github.com/hlky/k-diffusion-sd#egg=k_diffusion

@ -0,0 +1,3 @@
call conda activate sdco
python ./webui.py --no-half
Loading…
Cancel
Save