This commit is contained in:
2021-03-14 11:33:29 +01:00
parent 5008594c27
commit 49f85acb6c
3 changed files with 32 additions and 29 deletions

View File

@@ -26,7 +26,7 @@ class Pip:
@staticmethod
def install(package: str, *args, source: str = None, stdout=None, stderr=None):
pip_args = [sys.executable, "-m", "pip", "install", "--yes"]
pip_args = [sys.executable, "-m", "pip", "install"]
for arg in args:
pip_args.append(arg)