mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-15 04:17:58 -05:00
13 lines
271 B
Bash
Executable File
13 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$0" == "bash" ]; then
|
|
INSTALL_ENV_DIR="$(pwd)/installer_files/env"
|
|
if [ -e "$INSTALL_ENV_DIR" ]; then export PATH="$PATH;$INSTALL_ENV_DIR/bin"; fi
|
|
|
|
conda activate invokeai
|
|
|
|
echo "Ready to dream.."
|
|
else
|
|
bash --init-file invoke.sh
|
|
fi
|