diff --git a/update_modules.py b/update_modules.py index c7a629e60..59896488c 100644 --- a/update_modules.py +++ b/update_modules.py @@ -7,7 +7,7 @@ import sys try: logging.info('Installing Python modules required for Bazarr...') - command = sys.executable + ' -m pip --disable-pip-version-check -q -q install -r ' + os.path.join(os.path.dirname(__file__), 'requirements.txt') + command = sys.executable + ' -m pip --disable-pip-version-check -q -q install --user -r ' + os.path.join(os.path.dirname(__file__), 'requirements.txt') if os.name == 'nt': codepage = check_output("chcp", shell=True, stderr=subprocess.STDOUT)