| 192 | } |
| 193 | |
| 194 | bool CheckPythonPackageInstalled(const std::string& package, const PythonConfig& config){ |
| 195 | auto it = std::find(config.packages.begin(), config.packages.end(), package); |
| 196 | return (it != config.packages.end()); |
| 197 | } |
| 198 | |
| 199 | #ifdef __WXMSW__ |
| 200 | int InstallFromPipWindows(const std::string& pip_exec, const PythonPackageConfig& package){ |
no outgoing calls
no test coverage detected