mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2025-01-09 04:18:46 +08:00
8 lines
153 B
Bash
8 lines
153 B
Bash
#!/bin/bash
|
|
|
|
# make sure we are not already in a venv
|
|
# (don't need to check status)
|
|
deactivate >/dev/null 2>&1
|
|
|
|
exec python3 $(dirname $0)/main.py ${@}
|