(pythonPath?: string)
| 355 | } |
| 356 | |
| 357 | static getVersionSync(pythonPath?: string) { |
| 358 | if (!pythonPath) pythonPath = this.getPythonPath() |
| 359 | return execSync(pythonPath + " --version").toString() |
| 360 | } |
| 361 | |
| 362 | /** |
| 363 | * Parses an error thrown from the Python process through stderr |
nothing calls this directly
no test coverage detected