| 159 | } |
| 160 | |
| 161 | bool InstallPythonUnix(const std::string& path, const PythonConfig& config){ |
| 162 | std::string cmd = path + "/install_python.sh " + config.minicondaVersion + " " + config.pythonVersion + " " + path; |
| 163 | int rvalue = system(cmd.c_str()); |
| 164 | return (bool)rvalue; |
| 165 | } |
| 166 | |
| 167 | PythonPackageConfig ReadPythonPackageConfig(const std::string& name, const std::string& configFile){ |
| 168 | // load python configuration |