diff options
author | Joel Challis <git@zvecr.com> | 2022-08-24 20:25:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 20:25:16 +0100 |
commit | 3d8c6246980cc52a150fb568503d491edcb8c696 (patch) | |
tree | f303bf86fae952b3cbd0b08a7942669f12b33fd5 /lib/python | |
parent | 7fab889696423376712f996af393dd1830d3bb70 (diff) | |
download | qmk_firmware-3d8c6246980cc52a150fb568503d491edcb8c696.tar.gz qmk_firmware-3d8c6246980cc52a150fb568503d491edcb8c696.zip |
Update invalid pip install flag (#18146)
Diffstat (limited to 'lib/python')
-rw-r--r-- | lib/python/qmk/cli/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/__init__.py b/lib/python/qmk/cli/__init__.py index 02c6d1cbf4..1e15c28758 100644 --- a/lib/python/qmk/cli/__init__.py +++ b/lib/python/qmk/cli/__init__.py @@ -91,7 +91,7 @@ def _install_deps(requirements): elif not os.access(sys.prefix, os.W_OK): # We can't write to sys.prefix, attempt to install locally - command.append('--local') + command.append('--user') return _run_cmd(*command, '-r', requirements) |