0
0
mirror of https://github.com/thegeeklab/wp-ansible.git synced 2024-06-02 08:19:40 +02:00
wp-ansible/plugin/util.go

24 lines
526 B
Go

package plugin
import (
"github.com/thegeeklab/wp-plugin-go/v2/types"
"golang.org/x/sys/execabs"
)
const pipBin = "/usr/local/bin/pip"
// PipInstall returns a command to install Python packages from a requirements file.
// The command will upgrade any existing packages and install the packages specified in the given requirements file.
func PipInstall(req string) *types.Cmd {
args := []string{
"install",
"--upgrade",
"--requirement",
req,
}
return &types.Cmd{
Cmd: execabs.Command(pipBin, args...),
}
}