mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-08-08 15:34:38 +02:00
.github
media
scripts
Developer Console.cmd
Start Stable Diffusion UI.cmd
developer_console.sh
on_env_start.bat
on_env_start.sh
on_sd_start.bat
on_sd_start.sh
post_activate.bat
post_activate.sh
start.sh
win_enable_long_filepaths.ps1
ui
.gitignore
CONTRIBUTING.md
CreativeML Open RAIL-M License
How to install and run.txt
LICENSE
README BEFORE YOU RUN THIS.txt
README.md
Troubleshooting.md
build.bat
build.sh
environment.yaml
17 lines
282 B
Bash
Executable File
17 lines
282 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$0" == "bash" ]; then
|
|
echo "Opening Stable Diffusion UI - Developer Console.."
|
|
echo ""
|
|
|
|
source installer/bin/activate
|
|
|
|
conda-unpack
|
|
|
|
conda --version
|
|
git --version
|
|
|
|
conda activate ./stable-diffusion/env
|
|
else
|
|
bash --init-file developer_console.sh
|
|
fi |