diff options
author | QMK Bot <hello@qmk.fm> | 2022-08-24 19:26:18 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-08-24 19:26:18 +0000 |
commit | 129c60946c5864b2b1f201b2d2adb502ad37e4ed (patch) | |
tree | de9f2aacde4b7c541576f2e80911c503d5b2dbdb /lib | |
parent | 5f371104bce10e8033f83b25f7caef5223c725a6 (diff) | |
parent | 3d8c6246980cc52a150fb568503d491edcb8c696 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib')
-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 f05b2a746e..98e212c47b 100644 --- a/lib/python/qmk/cli/__init__.py +++ b/lib/python/qmk/cli/__init__.py @@ -95,7 +95,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) |