| 702 | } |
| 703 | |
| 704 | QString QmitkPipInstaller::PythonExecutable() const |
| 705 | { |
| 706 | const auto path = mitk::PythonHelper::GetExecutablePath(); |
| 707 | |
| 708 | if (path.empty()) |
| 709 | return {}; |
| 710 | |
| 711 | return QString::fromStdString(path.string()); |
| 712 | } |
| 713 | |
| 714 | QString QmitkPipInstaller::RequirePythonExecutable() |
| 715 | { |
no test coverage detected