소스 검색

Update invalid pip install flag (#18146)

Joel Challis 2 년 전
부모
커밋
3d8c624698
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/python/qmk/cli/__init__.py

+ 1 - 1
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)