| 220 | #endif |
| 221 | |
| 222 | int InstallFromPip(const std::string& pip_exec, const PythonPackageConfig& package){ |
| 223 | std::string cmd = pip_exec + " install " + package.name + "==" + package.version; |
| 224 | int rvalue = system(cmd.c_str()); |
| 225 | return rvalue; |
| 226 | } |
no outgoing calls
no test coverage detected