mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-22 08:13:22 +01:00
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 |