Skip to content

Commit

Permalink
'python' to sys.executable
Browse files Browse the repository at this point in the history
  • Loading branch information
Angus committed Jul 29, 2024
1 parent e0f70ff commit 90e8a85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions a00_qpip/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def pip_uninstall_reqs(self, reqs_to_uninstall, extra_args=[]):

run_cmd(
[
"python",
sys.executable,
"-um",
"pip",
"uninstall",
Expand All @@ -237,7 +237,7 @@ def pip_install_reqs(self, reqs_to_install):

run_cmd(
[
"python",
sys.executable,
"-um",
"pip",
"install",
Expand Down

0 comments on commit 90e8a85

Please sign in to comment.