Spaces:
Sleeping
Sleeping
File size: 255 Bytes
1a07caf | 1 2 3 4 5 6 7 8 9 | import sys
import subprocess
python_executable = sys.executable # Jo bhi active Python hai usko detect karega
command = [python_executable, "facefusion.py", "run"]
print(f"🚀 Launching FaceFusion with {python_executable}...")
subprocess.run(command)
|