reference pip instead

This commit is contained in:
Matthias Mair 2026-06-22 22:52:47 +02:00
parent f6c8b48583
commit 7cf1c494b4
No known key found for this signature in database
GPG Key ID: A593429DDA23B66A
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ def pip_command(*args) -> str:
"""
python = sys.executable
command = [python, '-m', 'pip3']
command = [python, '-m', 'pip']
command.extend(args)