Update invalid pip install flag (#18146)

pull/18160/head
Joel Challis 2022-08-24 20:25:16 +01:00 committed by GitHub
parent 7fab889696
commit 3d8c624698
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)