| 2720 | } |
| 2721 | |
| 2722 | void SamApp::LoadPythonConfig(){ |
| 2723 | pythonConfig = ReadPythonConfig(GetPythonConfigPath() + "/python_config.json"); |
| 2724 | if (CheckPythonInstalled(pythonConfig)){ |
| 2725 | std::string python_path = GetPythonConfigPath(); |
| 2726 | set_python_path(python_path.c_str()); |
| 2727 | return; |
| 2728 | } |
| 2729 | } |
| 2730 | |
| 2731 | bool SamApp::CheckPythonPackage(const std::string& pip_name){ |
| 2732 | if (CheckPythonInstalled(pythonConfig)){ |
nothing calls this directly
no test coverage detected