From de8103db63b279562ba111c1c030eb3b73d78aa8 Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Sat, 13 Oct 2018 23:22:07 +0200 Subject: [PATCH] Just call pip, without a version --- plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.go b/plugin.go index f99ea78..39f827a 100644 --- a/plugin.go +++ b/plugin.go @@ -187,7 +187,7 @@ func (p *Plugin) requirementsCommand() *exec.Cmd { } return exec.Command( - "pip3", + "pip", args..., ) }