| 2729 | } |
| 2730 | |
| 2731 | bool SamApp::CheckPythonPackage(const std::string& pip_name){ |
| 2732 | if (CheckPythonInstalled(pythonConfig)){ |
| 2733 | if (CheckPythonPackageInstalled(pip_name, pythonConfig)) |
| 2734 | return true; |
| 2735 | } |
| 2736 | return false; |
| 2737 | } |
| 2738 | |
| 2739 | void SamApp::InstallPython() { |
| 2740 | if (pythonConfig.pythonVersion.empty() && pythonConfig.minicondaVersion.empty()) |
nothing calls this directly
no test coverage detected