| 128 | } |
| 129 | |
| 130 | bool SamInterface::installRequirements(QString reqFile) |
| 131 | { |
| 132 | QString scriptPath = QStandardPaths::locate(QStandardPaths::AppDataLocation, QStringLiteral("scripts/automask/%1").arg(reqFile)); |
| 133 | qDebug() << "::: FOUND REQPATH: " << scriptPath; |
| 134 | if (!scriptPath.isEmpty()) { |
| 135 | return AbstractPythonInterface::installRequirements(scriptPath); |
| 136 | } |
| 137 | return false; |
| 138 | } |