From e2bac200d6ffd36de6011d20600bf811b0426d32 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Tue, 26 May 2026 08:14:48 +0200 Subject: [PATCH] remove --onnxruntime from install.py --- facefusion/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/facefusion/installer.py b/facefusion/installer.py index f50a0c37..9b7189f4 100644 --- a/facefusion/installer.py +++ b/facefusion/installer.py @@ -35,7 +35,7 @@ if is_linux(): def cli() -> None: signal.signal(signal.SIGINT, signal_exit) program = ArgumentParser(formatter_class = partial(HelpFormatter, max_help_position = 50)) - program.add_argument('--onnxruntime', help = LOCALES.get('install_dependency').format(dependency = 'onnxruntime'), choices = ONNXRUNTIME_SET.keys(), required = True) + program.add_argument('onnxruntime', help = LOCALES.get('install_dependency').format(dependency = 'onnxruntime'), choices = ONNXRUNTIME_SET.keys()) program.add_argument('--force-reinstall', help = LOCALES.get('force_reinstall'), action = 'store_true') program.add_argument('--skip-conda', help = LOCALES.get('skip_conda'), action = 'store_true') program.add_argument('-v', '--version', version = metadata.get('name') + ' ' + metadata.get('version'), action = 'version')