easydiffusion/start.sh
2022-10-04 15:45:52 +05:30

21 lines
399 B
Bash
Executable File

#!/bin/bash
echo "Stable Diffusion UI - v2.5\n\n"
export START_CMD_FILENAME="start.sh"
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
python installer/installer/main.py
read -p "Press any key to continue"