From aa6dcbd7328fe8c08119e67debaee96fb6d810c9 Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Mon, 9 Aug 2021 09:14:56 -0400 Subject: [PATCH] Removed the --no-color argument to pip command when installing requirements as it's not supported by older version of pip. --- bazarr/init.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bazarr/init.py b/bazarr/init.py index f7241149a..93014edf3 100644 --- a/bazarr/init.py +++ b/bazarr/init.py @@ -65,8 +65,7 @@ if not args.no_update: logging.info('BAZARR installing requirements...') try: pip_command = [sys.executable, '-m', 'pip', 'install', '-qq', '--disable-pip-version-check', - '--no-color', '-r', os.path.join(os.path.dirname(os.path.dirname(__file__)), - 'requirements.txt')] + '-r', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'requirements.txt')] if not is_virtualenv(): # --user only make sense if not running under venv pip_command.insert(4, '--user')