Spaces:
Runtime error
Runtime error
File size: 378 Bytes
0bde25e |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
import subprocess
# Clonamos el repositorio
if not os.path.exists('Fooocus'):
subprocess.run(['git', 'clone', 'https://github.com/lllyasviel/Fooocus.git'], check=True)
# Cambiamos al directorio Fooocus
os.chdir('Fooocus')
# Ejecutamos el script que necesita tu app
subprocess.run(['python3', 'entry_with_update.py', '--share', '--always-high-vram'], check=True) |