Categorygithub.com/CREDOProject/go-pip
repositorypackage
0.1.1
Repository: https://github.com/credoproject/go-pip.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

Go-Pip

Go bindings to manage Pip.


Example:

pip, err := utils.DetectPipBinary()
if err != nil {
	// TODO: No pip binary in system
}
command, err := New(pip).Install("conda").DryRun().Seal()
if err != nil {
	// TODO: Error building command
}
err = command.Run()
if err != nil {
	// TODO: Error running command
}