Skip to content

Commit

Permalink
Merge pull request #7 from angusmcb/fix-ubuntu
Browse files Browse the repository at this point in the history
'python' to sys.executable
  • Loading branch information
m-kuhn committed Aug 7, 2024
2 parents 3b5a79b + 90e8a85 commit ceded0e
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 ceded0e

Please sign in to comment.