Install and wire CUDA runtime for Windows STT
This commit is contained in:
@@ -28,7 +28,11 @@ async function main(): Promise<void> {
|
||||
const config = loadConfig();
|
||||
const python = await resolveBasePythonCommand(config);
|
||||
const venvRoot = path.resolve(process.cwd(), config.LOCAL_AI_VENV_PATH);
|
||||
const requirementsPath = path.resolve(process.cwd(), "python", "requirements.txt");
|
||||
const requirementsPath = path.resolve(
|
||||
process.cwd(),
|
||||
"python",
|
||||
process.platform === "win32" ? "requirements-windows.txt" : "requirements.txt",
|
||||
);
|
||||
|
||||
await mkdir(path.dirname(venvRoot), { recursive: true });
|
||||
|
||||
|
||||
Reference in New Issue
Block a user