Skip to content

Go library to interact with pip, Python's package manager.

License

Notifications You must be signed in to change notification settings

Rebel-Project-Core/go-pip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
}

About

Go library to interact with pip, Python's package manager.

Resources

License

Stars

Watchers

Forks

Packages

No packages published