diff --git a/app.py b/app.py index 652a6a4..96dec08 100644 --- a/app.py +++ b/app.py @@ -14,7 +14,8 @@ def pip_install(name: str): - os.system(f'{"pip" if os.name == "nt" else "pip3"} install -U {name}') + os.system( + f'{"py" if os.name == "nt" else "python3"} -m pip install -U {name}') try: