facefusion/install.py
Henry Ruhs 6fd53b9229
Migrate to conda (#461)
* Migrate from venv to conda

* Migrate from venv to conda
2024-03-28 19:37:19 +01:00

13 lines
235 B
Python
Executable File

#!/usr/bin/env python3
import os
import subprocess
os.environ['PIP_BREAK_SYSTEM_PACKAGES'] = '1'
subprocess.call([ 'pip', 'install' , 'inquirer', '-q' ])
from facefusion import installer
if __name__ == '__main__':
installer.cli()