2022-10-04 12:03:36 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-10-04 12:51:57 +02:00
|
|
|
echo "Stable Diffusion UI - v2.5"
|
|
|
|
echo ""
|
2022-10-04 12:03:36 +02:00
|
|
|
|
|
|
|
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
|
2022-10-04 13:03:54 +02:00
|
|
|
installer/installer/start.sh
|