Python interface defines methods for Python tools, including system Python and conda Python.
| 8 | |
| 9 | // Python interface defines methods for Python tools, including system Python and conda Python. |
| 10 | type Python interface { |
| 11 | Setup() error |
| 12 | GetVersion() string |
| 13 | GetExecutable() (string, error) |
| 14 | } |
| 15 | |
| 16 | // GetSystemPythonVersion detects the system python version. |
| 17 | func GetSystemPythonVersion() string { |
no outgoing calls
no test coverage detected