Spaces:
Paused
Paused
File size: 296 Bytes
05fcd0f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
echo Starting FramePack-Studio...
if [ -z "$(command -v python)" ]; then
echo "Did not find a Python binary. Exiting."
exit 1
fi
if [ ! -f "./venv/bin/activate" ]; then
echo "Did not find a Python virtual environment. Exiting."
exit 1
fi
source venv/bin/activate
python studio.py "$@" |