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

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

go-pythonvenv

A bridge helping manage python virtual environments from go.


Based on: https://github.com/dhruvmanila/pie

Usage:


env, err := pythonvenv.Create("path")
if err != nil {
  // Handle error
}

// You can use this environment for further operation.
venv := env.Activate()

// This removes all the venv files.
env.Destroy()