mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-24 17:24:29 +01:00
19 lines
323 B
Bash
Executable File
19 lines
323 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Stable Diffusion UI - v2.5"
|
|
echo ""
|
|
|
|
export SD_BASE_DIR=$(pwd)
|
|
|
|
echo "Working in $SD_BASE_DIR"
|
|
|
|
# Setup the packages required for the installer
|
|
installer/bootstrap/bootstrap.sh
|
|
|
|
# Test the bootstrap
|
|
git --version
|
|
python --version
|
|
|
|
# Download the rest of the installer and UI
|
|
installer/installer/start.sh
|