File size: 636 Bytes
ec606e1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
!git clone https://github.com/facefusion/facefusion.git
%cd /content/facefusion
!pip install -r requirements.txt
!pip install onnxruntime-gpu
# Path to the core.py file
file_path = '/content/facefusion/facefusion/uis/layouts/default.py'
# Read the content of the file
with open(file_path, 'r') as file:
content = file.read()
# Replace the line with the updated version
updated_content = content.replace("ui.launch(show_api = False)", "ui.launch(show_api = False, share=True, enable_queue=True)")
# Write the updated content back to the file
with open(file_path, 'w') as file:
file.write(updated_content)
!python run.py
|