Raphtalia / run.py
Premo4153's picture
Upload 48 files
1a07caf verified
raw
history blame contribute delete
255 Bytes
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)