File size: 254 Bytes
9c9e3c4
 
c820679
9c9e3c4
 
c820679
9c9e3c4
 
1
2
3
4
5
6
7
8
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)